56 @param replaceMode flag indicating the replace dialog mode (boolean) |
56 @param replaceMode flag indicating the replace dialog mode (boolean) |
57 @param parent parent widget of this dialog (QWidget) |
57 @param parent parent widget of this dialog (QWidget) |
58 """ |
58 """ |
59 super(FindFileDialog, self).__init__(parent) |
59 super(FindFileDialog, self).__init__(parent) |
60 self.setupUi(self) |
60 self.setupUi(self) |
61 self.setWindowFlags(Qt.WindowFlags(Qt.Window)) |
61 self.setWindowFlags(Qt.Window) |
62 |
62 |
63 self.dirSelectButton.setIcon(UI.PixmapCache.getIcon("open.png")) |
63 self.dirSelectButton.setIcon(UI.PixmapCache.getIcon("open.png")) |
64 |
64 |
65 self.__replaceMode = replaceMode |
65 self.__replaceMode = replaceMode |
66 |
66 |