diff options
author | Arno <am@disconnect.de> | 2014-07-08 08:13:30 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2014-07-08 08:13:30 +0200 |
commit | f76b42f192a82f777cf77f3eecfab9ca7e31e396 (patch) | |
tree | 40b15701fc3a5356e044de3ad6ca8274b0d592de /mappingtreewidget.cpp | |
parent | ca9cdb39a8b3eafa8106fed84cce013f18b0a114 (diff) | |
download | SheMov-f76b42f192a82f777cf77f3eecfab9ca7e31e396.tar.gz SheMov-f76b42f192a82f777cf77f3eecfab9ca7e31e396.tar.bz2 SheMov-f76b42f192a82f777cf77f3eecfab9ca7e31e396.zip |
Display unpack output in Dialog
This was a difficult one. Got lost in the Semantics of QThread once
again, but just 2 days later it works :)
Diffstat (limited to 'mappingtreewidget.cpp')
-rw-r--r-- | mappingtreewidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mappingtreewidget.cpp b/mappingtreewidget.cpp index be0c5a5..26f1b53 100644 --- a/mappingtreewidget.cpp +++ b/mappingtreewidget.cpp @@ -329,7 +329,7 @@ void MappingEditWidget::removeMapping(){ if(sel.isEmpty()){ return; } - QPersistentModelIndex firstIdx = sel.first(); + QModelIndex firstIdx = sel.first(); if(firstIdx.isValid()){ mResultModel->removeRows(firstIdx.row(), 1, firstIdx.parent()); } |