Skip to content

Commit

Permalink
Fix clazy override signal with signal warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Sep 25, 2017
1 parent be7f85b commit 6c74502
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 42 deletions.
3 changes: 0 additions & 3 deletions src/app/qgslabelingwidget.h
Expand Up @@ -51,9 +51,6 @@ class QgsLabelingWidget : public QgsMapLayerConfigWidget, private Ui::QgsLabelin

void resetSettings();

signals:
void widgetChanged();

protected slots:
void labelModeChanged( int index );
void showEngineConfigDialog();
Expand Down
3 changes: 1 addition & 2 deletions src/app/qgsmaptoolidentifyaction.h
Expand Up @@ -64,8 +64,7 @@ class APP_EXPORT QgsMapToolIdentifyAction : public QgsMapToolIdentify
void handleChangedRasterResults( QList<IdentifyResult> &results );

signals:
void identifyProgress( int, int );
void identifyMessage( const QString & );

void copyToClipboard( QgsFeatureStore & );

private slots:
Expand Down
6 changes: 0 additions & 6 deletions src/app/qgsrulebasedlabelingwidget.h
Expand Up @@ -88,9 +88,6 @@ class QgsRuleBasedLabelingWidget : public QgsPanelWidget, private Ui::QgsRuleBas
//! Gives access to the internal root of the rule tree
const QgsRuleBasedLabeling::Rule *rootRule() const { return mRootRule; }

signals:
void widgetChanged();

protected slots:
void addRule();
void editRule();
Expand Down Expand Up @@ -144,9 +141,6 @@ class APP_EXPORT QgsLabelingRulePropsWidget : public QgsPanelWidget, private Ui:

virtual void setDockMode( bool dockMode ) override;

signals:
void widgetChanged();

public slots:
void testFilter();
void buildExpression();
Expand Down
1 change: 0 additions & 1 deletion src/providers/postgres/qgspgsourceselect.h
Expand Up @@ -79,7 +79,6 @@ class QgsPgSourceSelect : public QgsAbstractDataSourceWidget, private Ui::QgsDbS

signals:
void addGeometryColumn( const QgsPostgresLayerProperty & );
void progress( int, int );
void progressMessage( const QString & );

public slots:
Expand Down
7 changes: 0 additions & 7 deletions src/providers/postgres/qgspostgresprovider.h
Expand Up @@ -219,13 +219,6 @@ class QgsPostgresProvider : public QgsVectorDataProvider

signals:

/**
* This is emitted whenever the worker thread has fully calculated the
* PostGIS extents for this layer, and its event has been received by this
* provider.
*/
void fullExtentCalculated();

/**
* This is emitted when this provider is satisfied that all objects
* have had a chance to adjust themselves after they'd been notified that
Expand Down
7 changes: 0 additions & 7 deletions src/providers/spatialite/qgsspatialiteprovider.h
Expand Up @@ -175,13 +175,6 @@ class QgsSpatiaLiteProvider: public QgsVectorDataProvider

signals:

/**
* This is emitted whenever the worker thread has fully calculated the
* extents for this layer, and its event has been received by this
* provider.
*/
void fullExtentCalculated();

/**
* This is emitted when this provider is satisfied that all objects
* have had a chance to adjust themselves after they'd been notified that
Expand Down
5 changes: 0 additions & 5 deletions src/providers/wcs/qgswcsprovider.h
Expand Up @@ -191,11 +191,6 @@ class QgsWcsProvider : public QgsRasterDataProvider, QgsGdalProviderBase
*/
static bool parseServiceExceptionReportDom( QByteArray const &xml, const QString &wcsVersion, QString &errorTitle, QString &errorText );


signals:

void dataChanged();

private:
// case insensitive attribute value lookup
static QString nodeAttribute( const QDomElement &e, const QString &name, const QString &defValue = QString() );
Expand Down
7 changes: 0 additions & 7 deletions src/providers/wcs/qgswcssourceselect.h
Expand Up @@ -58,13 +58,6 @@ class QgsWCSSourceSelect : public QgsOWSSourceSelect

~QgsWCSSourceSelect();

public slots:

signals:
void addRasterLayer( QString const &rasterLayerPath,
QString const &baseName,
QString const &providerKey );

private:
QgsWcsCapabilities mCapabilities;

Expand Down
4 changes: 0 additions & 4 deletions src/providers/wms/qgswmsprovider.h
Expand Up @@ -253,10 +253,6 @@ class QgsWmsProvider : public QgsRasterDataProvider
} TilePosition;
typedef QList<TilePosition> TilePositions;

signals:

void dataChanged();

private slots:
void identifyReplyFinished();
void getLegendGraphicReplyFinished( const QImage & );
Expand Down

0 comments on commit 6c74502

Please sign in to comment.