made commands view more abstract

This commit is contained in:
fourtf
2018-04-30 00:41:58 +02:00
parent 6bd787423d
commit 13f1caa294
6 changed files with 146 additions and 33 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ public:
TVectorItem item = this->vector[index];
this->vector.erase(this->vector.begin() + index);
ItemArgs args{item, args, caller};
ItemArgs args{item, index, caller};
this->itemRemoved.invoke(args);
}
};