diff -r 9a21c547de5f -r a9a94491c4fd Debugger/VariablesFilterDialog.py --- a/Debugger/VariablesFilterDialog.py Fri Jan 10 19:30:21 2014 +0100 +++ b/Debugger/VariablesFilterDialog.py Sat Jan 11 11:55:33 2014 +0100 @@ -37,14 +37,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)