65 |
65 |
66 def getData(self): |
66 def getData(self): |
67 """ |
67 """ |
68 Public method to retrieve the entered data. |
68 Public method to retrieve the entered data. |
69 |
69 |
70 @return tuple naming the new and old bookmark names |
70 @return tuple naming the old and new bookmark names |
71 (string, string) |
71 (string, string) |
72 """ |
72 """ |
73 return ( |
73 return ( |
|
74 self.bookmarkCombo.currentText().replace(" ", "_"), |
74 self.nameEdit.text().replace(" ", "_"), |
75 self.nameEdit.text().replace(" ", "_"), |
75 self.bookmarkCombo.currentText().replace(" ", "_") |
|
76 ) |
76 ) |