59 """ |
59 """ |
60 Private slot to handle editing of the new project directory. |
60 Private slot to handle editing of the new project directory. |
61 |
61 |
62 @param txt new project directory name (string) |
62 @param txt new project directory name (string) |
63 """ |
63 """ |
64 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled( |
64 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled( |
65 txt and Utilities.toNativeSeparators(txt) != os.path.dirname( |
65 txt and Utilities.toNativeSeparators(txt) != os.path.dirname( |
66 self.__currentPath)) |
66 self.__currentPath)) |
67 |
67 |
68 def getData(self): |
68 def getData(self): |
69 """ |
69 """ |