Skip to content

Commit 767a7b0

Browse files
committed
Travis fixes
1 parent 90e764d commit 767a7b0

File tree

5 files changed

+8
-2
lines changed

5 files changed

+8
-2
lines changed

python/core/auto_generated/mesh/qgsmeshdataprovider.sip.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ emits dataChanged when successful
321321

322322
virtual QStringList extraDatasets() const = 0;
323323
%Docstring
324-
Get list of additional dataset file URIs added using addDataset() calls.
324+
Returns list of additional dataset file URIs added using addDataset() calls.
325325
%End
326326

327327
virtual int datasetGroupCount( ) const = 0;

python/core/auto_generated/qgsmaplayerlegend.sip.in

+3
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,9 @@ Default legend implementation for mesh layers
210210
%End
211211
public:
212212
explicit QgsDefaultMeshLayerLegend( QgsMeshLayer *ml );
213+
%Docstring
214+
Creates an instance for the given mesh layer
215+
%End
213216

214217
virtual QList<QgsLayerTreeModelLegendNode *> createLayerTreeModelLegendNodes( QgsLayerTreeLayer *nodeLayer ) /Factory/;
215218

src/core/mesh/qgsmeshdataprovider.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ class CORE_EXPORT QgsMeshDatasetSourceInterface SIP_ABSTRACT
297297
virtual bool addDataset( const QString &uri ) = 0;
298298

299299
/**
300-
* Get list of additional dataset file URIs added using addDataset() calls.
300+
* Returns list of additional dataset file URIs added using addDataset() calls.
301301
*/
302302
virtual QStringList extraDatasets() const = 0;
303303

src/core/mesh/qgsmeshlayerutils.h

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
#ifndef QGSMESHLAYERUTILS_H
1919
#define QGSMESHLAYERUTILS_H
2020

21+
#define SIP_NO_FILE
22+
2123
#include "qgis_core.h"
2224

2325
class QgsMeshDataProvider;

src/core/qgsmaplayerlegend.h

+1
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ class CORE_EXPORT QgsDefaultMeshLayerLegend : public QgsMapLayerLegend
208208
Q_OBJECT
209209

210210
public:
211+
//! Creates an instance for the given mesh layer
211212
explicit QgsDefaultMeshLayerLegend( QgsMeshLayer *ml );
212213

213214
QList<QgsLayerTreeModelLegendNode *> createLayerTreeModelLegendNodes( QgsLayerTreeLayer *nodeLayer ) SIP_FACTORY override;

0 commit comments

Comments
 (0)