Mon, 28 Apr 2014 19:25:39 +0200
Removed two TODOs and made one more precise.
--- a/MultiProject/MultiProject.py Mon Apr 28 19:18:51 2014 +0200 +++ b/MultiProject/MultiProject.py Mon Apr 28 19:25:39 2014 +0200 @@ -90,7 +90,6 @@ self.description = "" # description of the multi project self.name = "" self.opened = False - # TODO: Introduce a UUID to make the project file name editable via the GUI self.projects = [] # list of project info; each info entry is # a dictionary # 'name' : name of the project
--- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Mon Apr 28 19:18:51 2014 +0200 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Mon Apr 28 19:25:39 2014 +0200 @@ -78,7 +78,8 @@ self.__indentWord = self.__getIndentWord() if inPlace: - # TODO: Do a backup before any changes + # TODO: Do a backup before any changes depending on + # 'CreateBackupFile' editor config setting. pass else: self.__origName = self.__filename
--- a/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Mon Apr 28 19:18:51 2014 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Mon Apr 28 19:25:39 2014 +0200 @@ -35,8 +35,6 @@ COLORS = [str(QColor(x).name()) for x in COLORNAMES] -# TODO: add an info field next to the message pane giving copyable -# info about branch, author, rev:changeset, date, tags, bookmarks class HgLogBrowserDialog(QWidget, Ui_HgLogBrowserDialog): """ Class implementing a dialog to browse the log history.