diff -r 96232974dcdb -r 645c12de6b0c Debugger/VariablesFilterDialog.py --- a/Debugger/VariablesFilterDialog.py Sun Mar 30 22:00:14 2014 +0200 +++ b/Debugger/VariablesFilterDialog.py Thu Apr 03 23:05:31 2014 +0200 @@ -39,14 +39,14 @@ self.setupUi(self) self.defaultButton = self.buttonBox.addButton( - self.trUtf8("Save Default"), QDialogButtonBox.ActionRole) + self.tr("Save Default"), QDialogButtonBox.ActionRole) lDefaultFilter, gDefaultFilter = Preferences.getVarFilters() #populate the listboxes and set the default selection for lb in self.localsList, self.globalsList: for ts in ConfigVarTypeDispStrings: - lb.addItem(self.trUtf8(ts)) + lb.addItem(self.tr(ts)) for filterIndex in lDefaultFilter: itm = self.localsList.item(filterIndex)