67 """ |
67 """ |
68 target = self.targetEdit.text() |
68 target = self.targetEdit.text() |
69 if not os.path.isabs(target): |
69 if not os.path.isabs(target): |
70 sourceDir = os.path.dirname(self.sourceEdit.text()) |
70 sourceDir = os.path.dirname(self.sourceEdit.text()) |
71 target = os.path.join(sourceDir, target) |
71 target = os.path.join(sourceDir, target) |
72 return Utilities.toNativeSeparators(target), \ |
72 return ( |
|
73 Utilities.toNativeSeparators(target), |
73 self.forceCheckBox.isChecked() |
74 self.forceCheckBox.isChecked() |
|
75 ) |
74 |
76 |
75 @pyqtSlot() |
77 @pyqtSlot() |
76 def on_dirButton_clicked(self): |
78 def on_dirButton_clicked(self): |
77 """ |
79 """ |
78 Private slot to handle the button press for selecting the target via a |
80 Private slot to handle the button press for selecting the target via a |