Plugins/VcsPlugins/vcsSubversion/SvnPropSetDialog.py

changeset 55
b5c84934de9c
parent 13
1af94a91f439
child 564
b3d966393ba9
child 792
a13346916170
equal deleted inserted replaced
54:31463df17fd5 55:b5c84934de9c
8 """ 8 """
9 9
10 from PyQt4.QtCore import * 10 from PyQt4.QtCore import *
11 from PyQt4.QtGui import * 11 from PyQt4.QtGui import *
12 12
13 from E4Gui.E4Completers import E4FileCompleter 13 from E5Gui.E5Completers import E5FileCompleter
14 14
15 from .Ui_SvnPropSetDialog import Ui_SvnPropSetDialog 15 from .Ui_SvnPropSetDialog import Ui_SvnPropSetDialog
16 16
17 import Utilities 17 import Utilities
18 18
27 @param parent parent widget (QWidget) 27 @param parent parent widget (QWidget)
28 """ 28 """
29 QDialog.__init__(self, parent) 29 QDialog.__init__(self, parent)
30 self.setupUi(self) 30 self.setupUi(self)
31 31
32 self.propFileCompleter = E4FileCompleter(self.propFileEdit) 32 self.propFileCompleter = E5FileCompleter(self.propFileEdit)
33 33
34 @pyqtSlot() 34 @pyqtSlot()
35 def on_fileButton_clicked(self): 35 def on_fileButton_clicked(self):
36 """ 36 """
37 Private slot called by pressing the file selection button. 37 Private slot called by pressing the file selection button.

eric ide

mercurial