mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-28 00:17:30 -05:00
added support for Unicode translations in fTools visuals
This commit is contained in:
parent
0b9ac8bd9b
commit
1bf8997cce
@ -180,7 +180,10 @@ class VisualDialog(QDialog, Ui_Dialog):
|
||||
else:
|
||||
self.tblUnique.setColumnCount(2)
|
||||
for rec in range(numRows):
|
||||
tmp = result[rec].split(":")
|
||||
if ":" not in result[rec]:
|
||||
tmp = result[rec].split(u"\uff1a")
|
||||
else:
|
||||
tmp = result[rec].split(":")
|
||||
item = QTableWidgetItem(tmp[0])
|
||||
self.tblUnique.setItem(rec, 0, item)
|
||||
item = QTableWidgetItem(tmp[1])
|
||||
|
Loading…
x
Reference in New Issue
Block a user