--- a/Plugins/VcsPlugins/vcsSubversion/SvnPropSetDialog.py Sun Mar 30 22:00:14 2014 +0200 +++ b/Plugins/VcsPlugins/vcsSubversion/SvnPropSetDialog.py Thu Apr 03 23:05:31 2014 +0200 @@ -18,6 +18,7 @@ from .Ui_SvnPropSetDialog import Ui_SvnPropSetDialog import Utilities +import UI.PixmapCache class SvnPropSetDialog(QDialog, Ui_SvnPropSetDialog): @@ -33,6 +34,8 @@ super(SvnPropSetDialog, self).__init__(parent) self.setupUi(self) + self.fileButton.setIcon(UI.PixmapCache.getIcon("open.png")) + self.propFileCompleter = E5FileCompleter(self.propFileEdit) @pyqtSlot() @@ -42,7 +45,7 @@ """ fn = E5FileDialog.getOpenFileName( self, - self.trUtf8("Select file for property"), + self.tr("Select file for property"), self.propFileEdit.text(), "")