mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Fix build
This commit is contained in:
parent
cf2c68196f
commit
11817f0ebd
@ -63,6 +63,8 @@ Saves a style when appriate button is pressed
|
||||
|
||||
virtual void apply() ${SIP_FINAL};
|
||||
|
||||
virtual void rollback() ${SIP_FINAL};
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
@ -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};
|
||||
|
||||
|
||||
};
|
||||
/************************************************************************
|
||||
|
@ -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:
|
||||
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user