diff -r 58fe260e7469 -r 7ce719013078 VCS/ProjectHelper.py --- a/VCS/ProjectHelper.py Sat Oct 19 12:28:12 2013 +0200 +++ b/VCS/ProjectHelper.py Sat Oct 19 13:03:39 2013 +0200 @@ -176,8 +176,8 @@ self.trUtf8( """Would you like to edit the VCS command options?""")) if vcores: - from .CommandOptionsDialog import vcsCommandOptionsDialog - codlg = vcsCommandOptionsDialog(self.project.vcs) + from .CommandOptionsDialog import VcsCommandOptionsDialog + codlg = VcsCommandOptionsDialog(self.project.vcs) if codlg.exec_() == QDialog.Accepted: self.project.vcs.vcsSetOptions(codlg.getOptions()) @@ -355,8 +355,8 @@ self.trUtf8( """Would you like to edit the VCS command options?""")) if vcores: - from .CommandOptionsDialog import vcsCommandOptionsDialog - codlg = vcsCommandOptionsDialog(self.project.vcs) + from .CommandOptionsDialog import VcsCommandOptionsDialog + codlg = VcsCommandOptionsDialog(self.project.vcs) if codlg.exec_() == QDialog.Accepted: self.project.vcs.vcsSetOptions(codlg.getOptions()) self.project.setDirty(True) @@ -426,8 +426,8 @@ """ Protected slot to edit the VCS command options. """ - from .CommandOptionsDialog import vcsCommandOptionsDialog - codlg = vcsCommandOptionsDialog(self.vcs) + from .CommandOptionsDialog import VcsCommandOptionsDialog + codlg = VcsCommandOptionsDialog(self.vcs) if codlg.exec_() == QDialog.Accepted: self.vcs.vcsSetOptions(codlg.getOptions()) self.project.setDirty(True)