25 Constructor |
25 Constructor |
26 |
26 |
27 @param vcs reference to the vcs object |
27 @param vcs reference to the vcs object |
28 @param parent parent widget (QWidget) |
28 @param parent parent widget (QWidget) |
29 """ |
29 """ |
30 super(vcsCommandOptionsDialog, self).__init__(parent) |
30 super(VcsCommandOptionsDialog, self).__init__(parent) |
31 self.setupUi(self) |
31 self.setupUi(self) |
32 |
32 |
33 if Utilities.isWindowsPlatform(): |
33 if Utilities.isWindowsPlatform(): |
34 self.optionChars = ['-', '/'] |
34 self.optionChars = ['-', '/'] |
35 else: |
35 else: |