Skip to content
Snippets Groups Projects
Commit a066cae0 authored by Jan Möbius's avatar Jan Möbius
Browse files

Datacontrol: removed unused variables

git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@2639 383ad7c9-94d9-4d36-a494-682f7c89f535
parent b1301203
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,6 @@ void DataControlPlugin::slotPopupRemove ( ) {
// Get all selected rows
QModelIndexList indexList = selection->selectedRows ( 0 );
int selectedRows = indexList.size();
for ( int i = 0 ; i < indexList.size() ; ++i) {
......@@ -73,7 +72,6 @@ void DataControlPlugin::slotUngroup ( ) {
// Get all selected rows
QModelIndexList indexList = selection->selectedRows ( 0 );
int selectedRows = indexList.size();
//remove complete group if selected item was a group
BaseObject* group = model_->getItem( indexList[0]);
......@@ -95,7 +93,6 @@ void DataControlPlugin::slotGroup ( ) {
// Get all selected rows
QModelIndexList indexList = selection->selectedRows ( 0 );
int selectedRows = indexList.size();
//check if all objects have the same parent
//abort if the parents differ
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment