Skip to content

Commit

Permalink
Finish 1.7.12
Browse files Browse the repository at this point in the history
  • Loading branch information
fralx committed Jul 25, 2024
2 parents 7c71574 + f171b90 commit 570aaa7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 16 deletions.
14 changes: 0 additions & 14 deletions limereport/items/lrhorizontallayout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,18 +238,4 @@ void HorizontalLayout::placeItemInLayout(BaseDesignIntf* item)
item->setPos(0, 0);
}

// void HorizontalLayout::insertItemInLayout(BaseDesignIntf* item)
// {
// bool inserted = false;
// for (int i=0; i<layoutsChildren().length(); ++i){
// BaseDesignIntf* child = layoutsChildren()[i];
// if (child->pos() == item->pos()){
// layoutsChildren().insert(i, item);
// inserted = true;
// break;
// }
// }
// if (!inserted) layoutsChildren().append(item);
// }

} // namespace LimeReport
1 change: 0 additions & 1 deletion limereport/items/lrhorizontallayout.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ class HorizontalLayout : public AbstractLayout
void sortChildren();
void divideSpace();
void placeItemInLayout(BaseDesignIntf* item);
// void insertItemInLayout(BaseDesignIntf* item);
};

} //namespace LimeReport
Expand Down
1 change: 0 additions & 1 deletion limereport/items/lrverticallayout.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class VerticalLayout : public AbstractLayout
void sortChildren();
void divideSpace();
void placeItemInLayout(BaseDesignIntf* item);
// void insertItemInLayout(BaseDesignIntf* item);
};

} // namespace LimeReport
Expand Down

0 comments on commit 570aaa7

Please sign in to comment.