--- a/Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py Mon Nov 12 17:46:11 2012 +0100 +++ b/Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py Mon Nov 12 19:04:11 2012 +0100 @@ -23,8 +23,6 @@ from .Ui_SvnLogBrowserDialog import Ui_SvnLogBrowserDialog -import UI.PixmapCache - class SvnLogBrowserDialog(QDialog, SvnDialogMixin, Ui_SvnLogBrowserDialog): """ @@ -58,7 +56,6 @@ self.fromDate.setDate(QDate.currentDate()) self.toDate.setDate(QDate.currentDate()) self.fieldCombo.setCurrentIndex(self.fieldCombo.findText(self.trUtf8("Message"))) - self.clearRxEditButton.setIcon(UI.PixmapCache.getIcon("clearLeft.png")) self.limitSpinBox.setValue(self.vcs.getPlugin().getPreferences("LogLimit")) self.stopCheckBox.setChecked(self.vcs.getPlugin().getPreferences("StopLogOnCopy")) @@ -503,13 +500,6 @@ self.messageEdit.clear() self.filesTree.clear() - @pyqtSlot() - def on_clearRxEditButton_clicked(self): - """ - Private slot called by a click of the clear RX edit button. - """ - self.rxEdit.clear() - @pyqtSlot(bool) def on_stopCheckBox_clicked(self, checked): """