mirror of
https://github.com/Kilian/Trimage.git
synced 2026-01-26 10:08:40 -05:00
Remove unuseful unicode call
This commit is contained in:
parent
e71c22b519
commit
bc8c665d40
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ class TrimageTableView(QTableView):
|
||||||
event.accept()
|
event.accept()
|
||||||
filelist = []
|
filelist = []
|
||||||
for url in event.mimeData().urls():
|
for url in event.mimeData().urls():
|
||||||
filelist.append(unicode(url.toLocalFile()))
|
filelist.append(url.toLocalFile())
|
||||||
|
|
||||||
self.emit(SIGNAL("fileDropEvent"), (filelist))
|
self.emit(SIGNAL("fileDropEvent"), (filelist))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue