summaryrefslogtreecommitdiffstats
path: root/mappingtreewidget.cpp
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2014-07-08 08:13:30 +0200
committerArno <am@disconnect.de>2014-07-08 08:13:30 +0200
commitf76b42f192a82f777cf77f3eecfab9ca7e31e396 (patch)
tree40b15701fc3a5356e044de3ad6ca8274b0d592de /mappingtreewidget.cpp
parentca9cdb39a8b3eafa8106fed84cce013f18b0a114 (diff)
downloadSheMov-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.cpp2
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());
}