UI/FindFileNameDialog.py

changeset 3190
a9a94491c4fd
parent 3186
a05eff845522
child 3484
645c12de6b0c
diff -r 9a21c547de5f -r a9a94491c4fd UI/FindFileNameDialog.py
--- a/UI/FindFileNameDialog.py	Fri Jan 10 19:30:21 2014 +0100
+++ b/UI/FindFileNameDialog.py	Sat Jan 11 11:55:33 2014 +0100
@@ -23,6 +23,7 @@
 import Utilities
 import UI.PixmapCache
 
+
 class FindFileNameDialog(QWidget, Ui_FindFileNameDialog):
     """
     Class implementing a dialog to search for files.
@@ -54,11 +55,11 @@
         self.fileList.headerItem().setText(self.fileList.columnCount(), "")
         
         self.stopButton = self.buttonBox.addButton(
-            self.trUtf8("Stop"), QDialogButtonBox.ActionRole)
-        self.stopButton.setToolTip(self.trUtf8("Press to stop the search"))
+            self.tr("Stop"), QDialogButtonBox.ActionRole)
+        self.stopButton.setToolTip(self.tr("Press to stop the search"))
         self.stopButton.setEnabled(False)
         self.buttonBox.button(QDialogButtonBox.Open).setToolTip(
-            self.trUtf8("Opens the selected file"))
+            self.tr("Opens the selected file"))
         self.buttonBox.button(QDialogButtonBox.Open).setEnabled(False)
         
         self.project = project
@@ -201,7 +202,7 @@
         """
         searchDir = E5FileDialog.getExistingDirectory(
             None,
-            self.trUtf8("Select search directory"),
+            self.tr("Select search directory"),
             self.searchDirEdit.text(),
             E5FileDialog.Options(E5FileDialog.ShowDirsOnly))
         

eric ide

mercurial