mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-18 00:03:05 -04:00
Add missing overrides
This commit is contained in:
parent
2d5c1dd811
commit
fe3e07eadb
@ -27,12 +27,12 @@ class QgsMapToolAddCircularString: public QgsMapToolCapture
|
|||||||
QgsMapToolAddCircularString( QgsMapToolCapture* parentTool, QgsMapCanvas* canvas, CaptureMode mode = CaptureLine );
|
QgsMapToolAddCircularString( QgsMapToolCapture* parentTool, QgsMapCanvas* canvas, CaptureMode mode = CaptureLine );
|
||||||
~QgsMapToolAddCircularString();
|
~QgsMapToolAddCircularString();
|
||||||
|
|
||||||
void keyPressEvent( QKeyEvent* e );
|
void keyPressEvent( QKeyEvent* e ) override;
|
||||||
void keyReleaseEvent( QKeyEvent* e );
|
void keyReleaseEvent( QKeyEvent* e ) override;
|
||||||
|
|
||||||
void deactivate();
|
void deactivate() override;
|
||||||
|
|
||||||
void activate();
|
void activate() override;
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void setParentTool( QgsMapTool* newTool, QgsMapTool* oldTool );
|
void setParentTool( QgsMapTool* newTool, QgsMapTool* oldTool );
|
||||||
|
@ -36,9 +36,9 @@ class QgsWelcomePageItemsModel : public QAbstractListModel
|
|||||||
|
|
||||||
void setRecentProjects( const QList<RecentProjectData>& recentProjects );
|
void setRecentProjects( const QList<RecentProjectData>& recentProjects );
|
||||||
|
|
||||||
int rowCount( const QModelIndex& parent ) const;
|
int rowCount( const QModelIndex& parent ) const override;
|
||||||
QVariant data( const QModelIndex& index, int role ) const;
|
QVariant data( const QModelIndex& index, int role ) const override;
|
||||||
Qt::ItemFlags flags( const QModelIndex& index ) const;
|
Qt::ItemFlags flags( const QModelIndex& index ) const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QList<RecentProjectData> mRecentProjects;
|
QList<RecentProjectData> mRecentProjects;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user