Travis fixes

This commit is contained in:
Martin Dobias 2018-08-14 19:53:27 +02:00
parent 90e764dfab
commit 767a7b0f5c
5 changed files with 8 additions and 2 deletions

View File

@ -321,7 +321,7 @@ emits dataChanged when successful
virtual QStringList extraDatasets() const = 0;
%Docstring
Get list of additional dataset file URIs added using addDataset() calls.
Returns list of additional dataset file URIs added using addDataset() calls.
%End
virtual int datasetGroupCount( ) const = 0;

View File

@ -210,6 +210,9 @@ Default legend implementation for mesh layers
%End
public:
explicit QgsDefaultMeshLayerLegend( QgsMeshLayer *ml );
%Docstring
Creates an instance for the given mesh layer
%End
virtual QList<QgsLayerTreeModelLegendNode *> createLayerTreeModelLegendNodes( QgsLayerTreeLayer *nodeLayer ) /Factory/;

View File

@ -297,7 +297,7 @@ class CORE_EXPORT QgsMeshDatasetSourceInterface SIP_ABSTRACT
virtual bool addDataset( const QString &uri ) = 0;
/**
* Get list of additional dataset file URIs added using addDataset() calls.
* Returns list of additional dataset file URIs added using addDataset() calls.
*/
virtual QStringList extraDatasets() const = 0;

View File

@ -18,6 +18,8 @@
#ifndef QGSMESHLAYERUTILS_H
#define QGSMESHLAYERUTILS_H
#define SIP_NO_FILE
#include "qgis_core.h"
class QgsMeshDataProvider;

View File

@ -208,6 +208,7 @@ class CORE_EXPORT QgsDefaultMeshLayerLegend : public QgsMapLayerLegend
Q_OBJECT
public:
//! Creates an instance for the given mesh layer
explicit QgsDefaultMeshLayerLegend( QgsMeshLayer *ml );
QList<QgsLayerTreeModelLegendNode *> createLayerTreeModelLegendNodes( QgsLayerTreeLayer *nodeLayer ) SIP_FACTORY override;