Skip to content

Commit 757949b

Browse files
committed
Add missing references
1 parent 96923c7 commit 757949b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

python/gui/auto_generated/layout/qgslayoutdesignerinterface.sip.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Returns the layout view utilized by the designer.
5757
Returns the designer's message bar.
5858
%End
5959

60-
virtual void selectItems( QList< QgsLayoutItem * > items ) = 0;
60+
virtual void selectItems( const QList< QgsLayoutItem * > &items ) = 0;
6161
%Docstring
6262
Selects the specified ``items``.
6363
%End

src/app/layout/qgslayoutdesignerdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ QgsMessageBar *QgsAppLayoutDesignerInterface::messageBar()
120120
return mDesigner->messageBar();
121121
}
122122

123-
void QgsAppLayoutDesignerInterface::selectItems( const QList<QgsLayoutItem *> items )
123+
void QgsAppLayoutDesignerInterface::selectItems( const QList<QgsLayoutItem *> &items )
124124
{
125125
mDesigner->selectItems( items );
126126
}

src/app/layout/qgslayoutdesignerdialog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class QgsAppLayoutDesignerInterface : public QgsLayoutDesignerInterface
5959
QgsMasterLayoutInterface *masterLayout() override;
6060
QgsLayoutView *view() override;
6161
QgsMessageBar *messageBar() override;
62-
void selectItems( QList< QgsLayoutItem * > items ) override;
62+
void selectItems( const QList< QgsLayoutItem * > &items ) override;
6363

6464
public slots:
6565

src/gui/layout/qgslayoutdesignerinterface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class GUI_EXPORT QgsLayoutDesignerInterface: public QObject
7676
/**
7777
* Selects the specified \a items.
7878
*/
79-
virtual void selectItems( QList< QgsLayoutItem * > items ) = 0;
79+
virtual void selectItems( const QList< QgsLayoutItem * > &items ) = 0;
8080

8181
public slots:
8282

0 commit comments

Comments
 (0)