Skip to content

Commit 499459b

Browse files
committedMay 27, 2018
fix build with SIP <4.19
1 parent a2d796a commit 499459b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎python/core/auto_generated/mesh/qgsmeshlayer.sip.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ is the MDAL connection string. QGIS must be built with MDAL support to allow thi
7979

8080
struct LayerOptions
8181
{
82-
82+
int unused; //! @todo remove me once there are actual members here (breaks SIP <4.19)
8383
};
8484

8585
explicit QgsMeshLayer( const QString &path = QString(), const QString &baseName = QString(), const QString &providerLib = "mesh_memory",

‎python/core/auto_generated/qgsdataprovider.sip.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ to generic QgsVectorDataProvider's) depends on it.
6767

6868
struct ProviderOptions
6969
{
70-
70+
int unused; //! @todo remove me once there are actual members here (breaks SIP <4.19)
7171
};
7272

7373
QgsDataProvider( const QString &uri = QString(), const QgsDataProvider::ProviderOptions &options = QgsDataProvider::ProviderOptions() );

‎src/core/mesh/qgsmeshlayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class CORE_EXPORT QgsMeshLayer : public QgsMapLayer
9797
*/
9898
struct LayerOptions
9999
{
100-
100+
int unused; //! @todo remove me once there are actual members here (breaks SIP <4.19)
101101
};
102102

103103
/**

‎src/core/qgsdataprovider.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class CORE_EXPORT QgsDataProvider : public QObject
103103
*/
104104
struct ProviderOptions
105105
{
106-
106+
int unused; //! @todo remove me once there are actual members here (breaks SIP <4.19)
107107
};
108108

109109
/**

0 commit comments

Comments
 (0)
Please sign in to comment.