38 super(GitNewProjectOptionsDialog, self).__init__(parent) |
38 super(GitNewProjectOptionsDialog, self).__init__(parent) |
39 self.setupUi(self) |
39 self.setupUi(self) |
40 |
40 |
41 self.__vcs = vcs |
41 self.__vcs = vcs |
42 |
42 |
43 self.projectDirButton.setIcon(UI.PixmapCache.getIcon("open.png")) |
43 self.projectDirButton.setIcon(UI.PixmapCache.getIcon("open")) |
44 self.vcsUrlButton.setIcon(UI.PixmapCache.getIcon("open.png")) |
44 self.vcsUrlButton.setIcon(UI.PixmapCache.getIcon("open")) |
45 self.vcsUrlClearHistoryButton.setIcon( |
45 self.vcsUrlClearHistoryButton.setIcon( |
46 UI.PixmapCache.getIcon("editDelete.png")) |
46 UI.PixmapCache.getIcon("editDelete")) |
47 |
47 |
48 vcsUrlHistory = self.__vcs.getPlugin().getPreferences( |
48 vcsUrlHistory = self.__vcs.getPlugin().getPreferences( |
49 "RepositoryUrlHistory") |
49 "RepositoryUrlHistory") |
50 self.vcsUrlCombo.addItems(vcsUrlHistory) |
50 self.vcsUrlCombo.addItems(vcsUrlHistory) |
51 self.vcsUrlCombo.setEditText("") |
51 self.vcsUrlCombo.setEditText("") |