mirror of
https://github.com/fralx/LimeReport.git
synced 2025-09-26 17:59:08 +03:00
WIP
This commit is contained in:
@@ -1723,7 +1723,7 @@ HorizontalLayout* PageDesignIntf::internalAddHLayout()
|
||||
|
||||
QList<QGraphicsItem *> si = selectedItems();
|
||||
QList<QGraphicsItem *>::iterator it = si.begin();
|
||||
qSort(si.begin(), si.end(), hLayoutLessThen);
|
||||
std::sort(si.begin(), si.end(), hLayoutLessThen);
|
||||
it = si.begin();
|
||||
|
||||
if (si.count() > 1) {
|
||||
@@ -1767,7 +1767,7 @@ VerticalLayout* PageDesignIntf::internalAddVLayout()
|
||||
|
||||
QList<QGraphicsItem *> si = selectedItems();
|
||||
QList<QGraphicsItem *>::iterator it = si.begin();
|
||||
qSort(si.begin(), si.end(), vLayoutLessThen);
|
||||
std::sort(si.begin(), si.end(), vLayoutLessThen);
|
||||
it = si.begin();
|
||||
|
||||
if (si.count() > 1) {
|
||||
|
Reference in New Issue
Block a user