Fix build

This commit is contained in:
Nyall Dawson 2023-07-05 09:50:52 +10:00
parent cf2c68196f
commit 11817f0ebd
6 changed files with 18 additions and 9 deletions

View File

@ -63,6 +63,8 @@ Saves a style when appriate button is pressed
virtual void apply() ${SIP_FINAL};
virtual void rollback() ${SIP_FINAL};
};

View File

@ -68,6 +68,10 @@ Saves a style when appriate button is pressed
%End
protected slots:
virtual void apply() ${SIP_FINAL};
virtual void rollback() ${SIP_FINAL};
};
/************************************************************************

View File

@ -55,6 +55,12 @@ Saves a style when appriate button is pressed
protected slots:
void optionsStackedWidget_CurrentChanged( int index ) final;
virtual void syncToLayer() ${SIP_FINAL};
virtual void apply() ${SIP_FINAL};
virtual void rollback() ${SIP_FINAL};
signals:

View File

@ -78,6 +78,7 @@ class GUI_EXPORT QgsMeshLayerProperties : public QgsLayerPropertiesDialog, priva
protected slots:
void syncToLayer() FINAL;
void apply() FINAL;
void rollback() FINAL;
private slots:
@ -89,7 +90,6 @@ class GUI_EXPORT QgsMeshLayerProperties : public QgsLayerPropertiesDialog, priva
void aboutToShowStyleMenu();
//! Reloads temporal properties from the provider
void reloadTemporalProperties();
void rollback() FINAL;
void onTimeReferenceChange();

View File

@ -111,6 +111,8 @@ class GUI_EXPORT QgsRasterLayerProperties : public QgsLayerPropertiesDialog, pri
protected slots:
//! \brief auto slot executed when the active page in the main widget stack is changed
void optionsStackedWidget_CurrentChanged( int index ) override SIP_SKIP ;
void apply() FINAL;
void rollback() FINAL;
private:
@ -143,8 +145,6 @@ class GUI_EXPORT QgsRasterLayerProperties : public QgsLayerPropertiesDialog, pri
void updateProperty();
void apply() FINAL;
void rollback() FINAL;
//! \brief this slot asks the rasterlayer to construct pyramids
void buttonBuildPyramids_clicked();
//! \brief slot executed when user changes the layer's CRS

View File

@ -104,20 +104,17 @@ class GUI_EXPORT QgsVectorLayerProperties : public QgsLayerPropertiesDialog, pri
protected slots:
void optionsStackedWidget_CurrentChanged( int index ) final;
void syncToLayer() FINAL;
void apply() FINAL;
void rollback() FINAL;
private slots:
void insertFieldOrExpression();
void syncToLayer() FINAL;
//! Gets metadata about the layer in nice formatted html
QString htmlMetadata();
void apply() FINAL;
void rollback() FINAL;
//
//methods reimplemented from qt designer base class
//