Skip to content

Commit

Permalink
fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jun 27, 2017
1 parent aeecda3 commit 0f83a5f
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 13 deletions.
4 changes: 0 additions & 4 deletions python/server/qgsserverprojectparser.sip
Expand Up @@ -174,10 +174,6 @@ Returns the layer id under a <legendlayer> tag in the QGIS projectfile
:rtype: list of QDomElement :rtype: list of QDomElement
%End %End


QList< QPair< QString, QgsDatumTransformStore::Entry > > layerCoordinateTransforms() const;
%Docstring
:rtype: list of QPair< str, QgsDatumTransformStore.Entry >
%End


QStringList wfsLayers() const; QStringList wfsLayers() const;
%Docstring %Docstring
Expand Down
4 changes: 0 additions & 4 deletions python/server/qgswmsconfigparser.sip
Expand Up @@ -203,10 +203,6 @@ Adds print capabilities to xml document. ParentElem usually is the <Capabilities
virtual void setScaleDenominator( double denom ) = 0; virtual void setScaleDenominator( double denom ) = 0;
virtual void addExternalGMLData( const QString &layerName, QDomDocument *gmlDoc ) = 0; virtual void addExternalGMLData( const QString &layerName, QDomDocument *gmlDoc ) = 0;


virtual QList< QPair< QString, QgsDatumTransformStore::Entry > > layerCoordinateTransforms() const = 0;
%Docstring
:rtype: list of QPair< str, QgsDatumTransformStore.Entry >
%End


virtual int nLayers() const = 0; virtual int nLayers() const = 0;
%Docstring %Docstring
Expand Down
2 changes: 0 additions & 2 deletions python/server/qgswmsprojectparser.sip
Expand Up @@ -83,8 +83,6 @@ class QgsWmsProjectParser : QgsWmsConfigParser
virtual void setScaleDenominator( double ); virtual void setScaleDenominator( double );
virtual void addExternalGMLData( const QString &, QDomDocument * ); virtual void addExternalGMLData( const QString &, QDomDocument * );


virtual QList< QPair< QString, QgsDatumTransformStore::Entry > > layerCoordinateTransforms() const;



virtual int layersAndStyles( QStringList &layers, QStringList &styles ) const; virtual int layersAndStyles( QStringList &layers, QStringList &styles ) const;


Expand Down
2 changes: 1 addition & 1 deletion src/server/qgsserverprojectparser.h
Expand Up @@ -106,7 +106,7 @@ class SERVER_EXPORT QgsServerProjectParser


QList<QDomElement> publishedComposerElements() const; QList<QDomElement> publishedComposerElements() const;


QList< QPair< QString, QgsDatumTransformStore::Entry > > layerCoordinateTransforms() const; QList< QPair< QString, QgsDatumTransformStore::Entry > > layerCoordinateTransforms() const SIP_SKIP;


QStringList wfsLayers() const; QStringList wfsLayers() const;
QStringList wcsLayers() const; QStringList wcsLayers() const;
Expand Down
2 changes: 1 addition & 1 deletion src/server/qgswmsconfigparser.h
Expand Up @@ -129,7 +129,7 @@ class SERVER_EXPORT QgsWmsConfigParser
virtual void setScaleDenominator( double denom ) = 0; virtual void setScaleDenominator( double denom ) = 0;
virtual void addExternalGMLData( const QString &layerName, QDomDocument *gmlDoc ) = 0; virtual void addExternalGMLData( const QString &layerName, QDomDocument *gmlDoc ) = 0;


virtual QList< QPair< QString, QgsDatumTransformStore::Entry > > layerCoordinateTransforms() const = 0; virtual QList< QPair< QString, QgsDatumTransformStore::Entry > > layerCoordinateTransforms() const = 0 SIP_SKIP;


virtual int nLayers() const = 0; virtual int nLayers() const = 0;


Expand Down
2 changes: 1 addition & 1 deletion src/server/qgswmsprojectparser.h
Expand Up @@ -72,7 +72,7 @@ class SERVER_EXPORT QgsWmsProjectParser : public QgsWmsConfigParser
void setScaleDenominator( double ) override {} void setScaleDenominator( double ) override {}
void addExternalGMLData( const QString &, QDomDocument * ) override {} void addExternalGMLData( const QString &, QDomDocument * ) override {}


QList< QPair< QString, QgsDatumTransformStore::Entry > > layerCoordinateTransforms() const override; QList< QPair< QString, QgsDatumTransformStore::Entry > > layerCoordinateTransforms() const override SIP_SKIP;


//! Fills a layer and a style list. The two list have the same number of entries and the style and the layer at a position belong together (similar to the HTTP parameters 'Layers' and 'Styles'. Returns 0 in case of success //! Fills a layer and a style list. The two list have the same number of entries and the style and the layer at a position belong together (similar to the HTTP parameters 'Layers' and 'Styles'. Returns 0 in case of success
int layersAndStyles( QStringList &layers, QStringList &styles ) const override; int layersAndStyles( QStringList &layers, QStringList &styles ) const override;
Expand Down

0 comments on commit 0f83a5f

Please sign in to comment.