[qcineoob] qstring -> unicode
This commit is contained in:
parent
07fa78f8c3
commit
515d4b8990
1 changed files with 2 additions and 2 deletions
|
|
@ -437,8 +437,8 @@ class MainWindow(QtMainWindow):
|
|||
self.search_history.append(pattern)
|
||||
self.updateCompletion()
|
||||
|
||||
tosearch = self.ui.typeCombo.currentText()
|
||||
lang = self.ui.langCombo.currentText()
|
||||
tosearch = unicode(self.ui.typeCombo.currentText())
|
||||
lang = unicode(self.ui.langCombo.currentText())
|
||||
new_res = Result(self.weboob, self.app, self)
|
||||
self.ui.resultsTab.addTab(new_res, pattern)
|
||||
self.ui.resultsTab.setCurrentWidget(new_res)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue