mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Add missing references
This commit is contained in:
parent
96923c75b1
commit
757949bac0
@ -57,7 +57,7 @@ Returns the layout view utilized by the designer.
|
||||
Returns the designer's message bar.
|
||||
%End
|
||||
|
||||
virtual void selectItems( QList< QgsLayoutItem * > items ) = 0;
|
||||
virtual void selectItems( const QList< QgsLayoutItem * > &items ) = 0;
|
||||
%Docstring
|
||||
Selects the specified ``items``.
|
||||
%End
|
||||
|
@ -120,7 +120,7 @@ QgsMessageBar *QgsAppLayoutDesignerInterface::messageBar()
|
||||
return mDesigner->messageBar();
|
||||
}
|
||||
|
||||
void QgsAppLayoutDesignerInterface::selectItems( const QList<QgsLayoutItem *> items )
|
||||
void QgsAppLayoutDesignerInterface::selectItems( const QList<QgsLayoutItem *> &items )
|
||||
{
|
||||
mDesigner->selectItems( items );
|
||||
}
|
||||
|
@ -59,7 +59,7 @@ class QgsAppLayoutDesignerInterface : public QgsLayoutDesignerInterface
|
||||
QgsMasterLayoutInterface *masterLayout() override;
|
||||
QgsLayoutView *view() override;
|
||||
QgsMessageBar *messageBar() override;
|
||||
void selectItems( QList< QgsLayoutItem * > items ) override;
|
||||
void selectItems( const QList< QgsLayoutItem * > &items ) override;
|
||||
|
||||
public slots:
|
||||
|
||||
|
@ -76,7 +76,7 @@ class GUI_EXPORT QgsLayoutDesignerInterface: public QObject
|
||||
/**
|
||||
* Selects the specified \a items.
|
||||
*/
|
||||
virtual void selectItems( QList< QgsLayoutItem * > items ) = 0;
|
||||
virtual void selectItems( const QList< QgsLayoutItem * > &items ) = 0;
|
||||
|
||||
public slots:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user