Drop some more no value documentation

This commit is contained in:
Nyall Dawson 2024-07-23 15:02:57 +10:00
parent 04251e396c
commit 6d829ff7b4
42 changed files with 12 additions and 133 deletions

View File

@ -33,7 +33,6 @@ Construct a configuration for an authentication method
bool operator==( const QgsAuthMethodConfig &other ) const; bool operator==( const QgsAuthMethodConfig &other ) const;
bool operator!=( const QgsAuthMethodConfig &other ) const; bool operator!=( const QgsAuthMethodConfig &other ) const;
const QString id() const; const QString id() const;

View File

@ -343,9 +343,6 @@ The elevation will be truncated at the surface and bed levels.
public: public:
QgsMeshElevationAveragingMethod(); QgsMeshElevationAveragingMethod();
%Docstring
Ctor
%End
QgsMeshElevationAveragingMethod( double startElevation, double endElevation ); QgsMeshElevationAveragingMethod( double startElevation, double endElevation );
%Docstring %Docstring

View File

@ -47,6 +47,7 @@ Returns a dataset index within :py:func:`~QgsMeshDatasetIndex.group`
%Docstring %Docstring
Returns whether index is valid, ie at least groups is set Returns whether index is valid, ie at least groups is set
%End %End
bool operator == ( QgsMeshDatasetIndex other ) const; bool operator == ( QgsMeshDatasetIndex other ) const;
bool operator != ( QgsMeshDatasetIndex other ) const; bool operator != ( QgsMeshDatasetIndex other ) const;
}; };

View File

@ -40,9 +40,6 @@ pair of name and size in bytes
}; };
QgsPointCloudAttribute(); QgsPointCloudAttribute();
%Docstring
Ctor
%End
QgsPointCloudAttribute( const QString &name, DataType type ); QgsPointCloudAttribute( const QString &name, DataType type );
%Docstring %Docstring
Ctor Ctor
@ -110,10 +107,8 @@ Collection of point cloud attributes
#include "qgspointcloudattribute.h" #include "qgspointcloudattribute.h"
%End %End
public: public:
QgsPointCloudAttributeCollection(); QgsPointCloudAttributeCollection();
%Docstring
Ctor
%End
QgsPointCloudAttributeCollection( const QVector<QgsPointCloudAttribute> &attributes ); QgsPointCloudAttributeCollection( const QVector<QgsPointCloudAttribute> &attributes );
%Docstring %Docstring
Ctor with given attributes Ctor with given attributes

View File

@ -32,6 +32,7 @@ Base class for storing raw data from point cloud nodes
%Docstring %Docstring
Ctor Ctor
%End %End
virtual ~QgsPointCloudBlock(); virtual ~QgsPointCloudBlock();
QgsPointCloudBlock *clone() const /Factory/; QgsPointCloudBlock *clone() const /Factory/;

View File

@ -598,7 +598,6 @@ pieces of information about CRS.
%End %End
bool operator==( const QgsCoordinateReferenceSystem &srs ) const; bool operator==( const QgsCoordinateReferenceSystem &srs ) const;
bool operator!=( const QgsCoordinateReferenceSystem &srs ) const; bool operator!=( const QgsCoordinateReferenceSystem &srs ) const;
bool readXml( const QDomNode &node ); bool readXml( const QDomNode &node );

View File

@ -64,15 +64,10 @@ Returns ``True`` if this is a NULL project version.
%End %End
bool operator==( const QgsProjectVersion &other ) const; bool operator==( const QgsProjectVersion &other ) const;
bool operator!=( const QgsProjectVersion &other ) const; bool operator!=( const QgsProjectVersion &other ) const;
bool operator>=( const QgsProjectVersion &other ) const; bool operator>=( const QgsProjectVersion &other ) const;
bool operator>( const QgsProjectVersion &other ) const; bool operator>( const QgsProjectVersion &other ) const;
bool operator<( const QgsProjectVersion &other ) const; bool operator<( const QgsProjectVersion &other ) const;
bool operator<=( const QgsProjectVersion &other ) const; bool operator<=( const QgsProjectVersion &other ) const;
}; };

View File

@ -73,7 +73,6 @@ Creates a geometry simplifier according to specified method
%End %End
bool operator==( const QgsSimplifyMethod &v ) const; bool operator==( const QgsSimplifyMethod &v ) const;
bool operator!=( const QgsSimplifyMethod &v ) const; bool operator!=( const QgsSimplifyMethod &v ) const;
protected: protected:

View File

@ -56,9 +56,6 @@ itself the min/max values.
}; };
QgsRasterMinMaxOrigin(); QgsRasterMinMaxOrigin();
%Docstring
Default constructor.
%End
bool operator ==( const QgsRasterMinMaxOrigin &other ) const; bool operator ==( const QgsRasterMinMaxOrigin &other ) const;

View File

@ -33,7 +33,6 @@ Construct a configuration for an authentication method
bool operator==( const QgsAuthMethodConfig &other ) const; bool operator==( const QgsAuthMethodConfig &other ) const;
bool operator!=( const QgsAuthMethodConfig &other ) const; bool operator!=( const QgsAuthMethodConfig &other ) const;
const QString id() const; const QString id() const;

View File

@ -343,9 +343,6 @@ The elevation will be truncated at the surface and bed levels.
public: public:
QgsMeshElevationAveragingMethod(); QgsMeshElevationAveragingMethod();
%Docstring
Ctor
%End
QgsMeshElevationAveragingMethod( double startElevation, double endElevation ); QgsMeshElevationAveragingMethod( double startElevation, double endElevation );
%Docstring %Docstring

View File

@ -47,6 +47,7 @@ Returns a dataset index within :py:func:`~QgsMeshDatasetIndex.group`
%Docstring %Docstring
Returns whether index is valid, ie at least groups is set Returns whether index is valid, ie at least groups is set
%End %End
bool operator == ( QgsMeshDatasetIndex other ) const; bool operator == ( QgsMeshDatasetIndex other ) const;
bool operator != ( QgsMeshDatasetIndex other ) const; bool operator != ( QgsMeshDatasetIndex other ) const;
}; };

View File

@ -40,9 +40,6 @@ pair of name and size in bytes
}; };
QgsPointCloudAttribute(); QgsPointCloudAttribute();
%Docstring
Ctor
%End
QgsPointCloudAttribute( const QString &name, DataType type ); QgsPointCloudAttribute( const QString &name, DataType type );
%Docstring %Docstring
Ctor Ctor
@ -110,10 +107,8 @@ Collection of point cloud attributes
#include "qgspointcloudattribute.h" #include "qgspointcloudattribute.h"
%End %End
public: public:
QgsPointCloudAttributeCollection(); QgsPointCloudAttributeCollection();
%Docstring
Ctor
%End
QgsPointCloudAttributeCollection( const QVector<QgsPointCloudAttribute> &attributes ); QgsPointCloudAttributeCollection( const QVector<QgsPointCloudAttribute> &attributes );
%Docstring %Docstring
Ctor with given attributes Ctor with given attributes

View File

@ -32,6 +32,7 @@ Base class for storing raw data from point cloud nodes
%Docstring %Docstring
Ctor Ctor
%End %End
virtual ~QgsPointCloudBlock(); virtual ~QgsPointCloudBlock();
QgsPointCloudBlock *clone() const /Factory/; QgsPointCloudBlock *clone() const /Factory/;

View File

@ -598,7 +598,6 @@ pieces of information about CRS.
%End %End
bool operator==( const QgsCoordinateReferenceSystem &srs ) const; bool operator==( const QgsCoordinateReferenceSystem &srs ) const;
bool operator!=( const QgsCoordinateReferenceSystem &srs ) const; bool operator!=( const QgsCoordinateReferenceSystem &srs ) const;
bool readXml( const QDomNode &node ); bool readXml( const QDomNode &node );

View File

@ -64,15 +64,10 @@ Returns ``True`` if this is a NULL project version.
%End %End
bool operator==( const QgsProjectVersion &other ) const; bool operator==( const QgsProjectVersion &other ) const;
bool operator!=( const QgsProjectVersion &other ) const; bool operator!=( const QgsProjectVersion &other ) const;
bool operator>=( const QgsProjectVersion &other ) const; bool operator>=( const QgsProjectVersion &other ) const;
bool operator>( const QgsProjectVersion &other ) const; bool operator>( const QgsProjectVersion &other ) const;
bool operator<( const QgsProjectVersion &other ) const; bool operator<( const QgsProjectVersion &other ) const;
bool operator<=( const QgsProjectVersion &other ) const; bool operator<=( const QgsProjectVersion &other ) const;
}; };

View File

@ -73,7 +73,6 @@ Creates a geometry simplifier according to specified method
%End %End
bool operator==( const QgsSimplifyMethod &v ) const; bool operator==( const QgsSimplifyMethod &v ) const;
bool operator!=( const QgsSimplifyMethod &v ) const; bool operator!=( const QgsSimplifyMethod &v ) const;
protected: protected:

View File

@ -56,9 +56,6 @@ itself the min/max values.
}; };
QgsRasterMinMaxOrigin(); QgsRasterMinMaxOrigin();
%Docstring
Default constructor.
%End
bool operator ==( const QgsRasterMinMaxOrigin &other ) const; bool operator ==( const QgsRasterMinMaxOrigin &other ) const;

View File

@ -38,7 +38,7 @@ class QgsReadWriteContext;
class _3D_EXPORT Qgs3DAnimationSettings class _3D_EXPORT Qgs3DAnimationSettings
{ {
public: public:
//! ctor
Qgs3DAnimationSettings(); Qgs3DAnimationSettings();
//! keyframe definition //! keyframe definition

View File

@ -48,10 +48,7 @@ class _3D_EXPORT Qgs3DAxisSettings
Qgs3DAxisSettings() = default; Qgs3DAxisSettings() = default;
//! Returns true if both objects are equal
bool operator==( Qgs3DAxisSettings const &rhs ) const; bool operator==( Qgs3DAxisSettings const &rhs ) const;
//! Returns true if objects are not equal
bool operator!=( Qgs3DAxisSettings const &rhs ) const; bool operator!=( Qgs3DAxisSettings const &rhs ) const;
//! Reads settings from a DOM \a element //! Reads settings from a DOM \a element

View File

@ -65,9 +65,6 @@ class CORE_EXPORT QgsActionScope
*/ */
explicit QgsActionScope( const QString &id, const QString &title, const QString &description, const QgsExpressionContextScope &expressionContextScope = QgsExpressionContextScope() ); explicit QgsActionScope( const QString &id, const QString &title, const QString &description, const QgsExpressionContextScope &expressionContextScope = QgsExpressionContextScope() );
/**
* Compares two action scopes
*/
bool operator==( const QgsActionScope &other ) const; bool operator==( const QgsActionScope &other ) const;
/** /**

View File

@ -51,10 +51,7 @@ class CORE_EXPORT QgsAuthMethodConfig
// TODO c++20 - replace with = default // TODO c++20 - replace with = default
//! Operator used to compare configs' equality
bool operator==( const QgsAuthMethodConfig &other ) const; bool operator==( const QgsAuthMethodConfig &other ) const;
//! Operator used to compare configs' inequality
bool operator!=( const QgsAuthMethodConfig &other ) const; bool operator!=( const QgsAuthMethodConfig &other ) const;
/** /**

View File

@ -51,9 +51,6 @@ class CORE_EXPORT QgsProfileRequest
~QgsProfileRequest(); ~QgsProfileRequest();
/**
* Assignment operator
*/
QgsProfileRequest &operator=( const QgsProfileRequest &other ); QgsProfileRequest &operator=( const QgsProfileRequest &other );
bool operator==( const QgsProfileRequest &other ) const; bool operator==( const QgsProfileRequest &other ) const;

View File

@ -220,13 +220,11 @@ class CORE_EXPORT QgsLineSegment2D
// TODO c++20 - replace with = default // TODO c++20 - replace with = default
//! Equality operator
bool operator==( const QgsLineSegment2D &other ) const SIP_HOLDGIL bool operator==( const QgsLineSegment2D &other ) const SIP_HOLDGIL
{ {
return mStart == other.mStart && mEnd == other.mEnd; return mStart == other.mStart && mEnd == other.mEnd;
} }
//! Inequality operator
bool operator!=( const QgsLineSegment2D &other ) const SIP_HOLDGIL bool operator!=( const QgsLineSegment2D &other ) const SIP_HOLDGIL
{ {
return mStart != other.mStart || mEnd != other.mEnd; return mStart != other.mStart || mEnd != other.mEnd;

View File

@ -540,10 +540,6 @@ class CORE_EXPORT QgsRectangle
*/ */
QString asPolygon() const; QString asPolygon() const;
/**
* Comparison operator
* \returns TRUE if rectangles are equal
*/
bool operator==( const QgsRectangle &r1 ) const bool operator==( const QgsRectangle &r1 ) const
{ {
if ( isNull() ) return r1.isNull(); if ( isNull() ) return r1.isNull();
@ -554,19 +550,11 @@ class CORE_EXPORT QgsRectangle
qgsDoubleNear( r1.yMinimum(), yMinimum() ); qgsDoubleNear( r1.yMinimum(), yMinimum() );
} }
/**
* Comparison operator
* \returns FALSE if rectangles are equal
*/
bool operator!=( const QgsRectangle &r1 ) const bool operator!=( const QgsRectangle &r1 ) const
{ {
return ( ! operator==( r1 ) ); return ( ! operator==( r1 ) );
} }
/**
* Assignment operator
* \param r1 QgsRectangle to assign from
*/
QgsRectangle &operator=( const QgsRectangle &r1 ) QgsRectangle &operator=( const QgsRectangle &r1 )
{ {
if ( &r1 != this ) if ( &r1 != this )

View File

@ -368,7 +368,6 @@ class CORE_EXPORT QgsMeshElevationAveragingMethod: public QgsMesh3DAveragingMeth
{ {
public: public:
//! Ctor
QgsMeshElevationAveragingMethod(); QgsMeshElevationAveragingMethod();
/** /**

View File

@ -60,9 +60,8 @@ class CORE_EXPORT QgsMeshDatasetIndex
int dataset() const; int dataset() const;
//! Returns whether index is valid, ie at least groups is set //! Returns whether index is valid, ie at least groups is set
bool isValid() const; bool isValid() const;
//! Equality operator
bool operator == ( QgsMeshDatasetIndex other ) const; bool operator == ( QgsMeshDatasetIndex other ) const;
//! Inequality operator
bool operator != ( QgsMeshDatasetIndex other ) const; bool operator != ( QgsMeshDatasetIndex other ) const;
private: private:
int mGroupIndex = -1; int mGroupIndex = -1;

View File

@ -650,7 +650,6 @@ class CORE_EXPORT QgsMeshVectorTraceAnimationGenerator
//! Sets the visual persistence of the tail //! Sets the visual persistence of the tail
void setTailPersitence( double p ); void setTailPersitence( double p );
//! Assignment operator
QgsMeshVectorTraceAnimationGenerator &operator=( const QgsMeshVectorTraceAnimationGenerator &other ); QgsMeshVectorTraceAnimationGenerator &operator=( const QgsMeshVectorTraceAnimationGenerator &other );
private: private:

View File

@ -51,9 +51,8 @@ class QgsRectangle;
class CORE_EXPORT QgsTriangularMesh // TODO rename to QgsRendererMesh in QGIS 4 class CORE_EXPORT QgsTriangularMesh // TODO rename to QgsRendererMesh in QGIS 4
{ {
public: public:
//! Ctor
QgsTriangularMesh(); QgsTriangularMesh();
//! Dtor
~QgsTriangularMesh(); ~QgsTriangularMesh();
/** /**

View File

@ -55,7 +55,6 @@ class CORE_EXPORT QgsPointCloudAttribute
Double, //!< Double 8 bytes Double, //!< Double 8 bytes
}; };
//! Ctor
QgsPointCloudAttribute(); QgsPointCloudAttribute();
//! Ctor //! Ctor
QgsPointCloudAttribute( const QString &name, DataType type ); QgsPointCloudAttribute( const QString &name, DataType type );
@ -141,7 +140,7 @@ class CORE_EXPORT QgsPointCloudAttribute
class CORE_EXPORT QgsPointCloudAttributeCollection class CORE_EXPORT QgsPointCloudAttributeCollection
{ {
public: public:
//! Ctor
QgsPointCloudAttributeCollection(); QgsPointCloudAttributeCollection();
//! Ctor with given attributes //! Ctor with given attributes
QgsPointCloudAttributeCollection( const QVector<QgsPointCloudAttribute> &attributes ); QgsPointCloudAttributeCollection( const QVector<QgsPointCloudAttribute> &attributes );

View File

@ -42,7 +42,7 @@ class CORE_EXPORT QgsPointCloudBlock
QgsPointCloudBlock( int count, QgsPointCloudBlock( int count,
const QgsPointCloudAttributeCollection &attributes, const QgsPointCloudAttributeCollection &attributes,
const QByteArray &data, const QgsVector3D &scale, const QgsVector3D &offset ); const QByteArray &data, const QgsVector3D &scale, const QgsVector3D &offset );
//! Dtor
virtual ~QgsPointCloudBlock() = default; virtual ~QgsPointCloudBlock() = default;
/** /**

View File

@ -68,7 +68,6 @@ class CORE_EXPORT IndexedPointCloudNode
// TODO c++20 - replace with = default // TODO c++20 - replace with = default
//! Compares nodes
bool operator==( IndexedPointCloudNode other ) const bool operator==( IndexedPointCloudNode other ) const
{ {
return mD == other.d() && mX == other.x() && mY == other.y() && mZ == other.z(); return mD == other.d() && mX == other.x() && mY == other.y() && mZ == other.z();
@ -122,7 +121,6 @@ class CORE_EXPORT QgsPointCloudCacheKey
//! Ctor //! Ctor
QgsPointCloudCacheKey( const IndexedPointCloudNode &n, const QgsPointCloudRequest &request, const QgsPointCloudExpression &expression, const QString &uri ); QgsPointCloudCacheKey( const IndexedPointCloudNode &n, const QgsPointCloudRequest &request, const QgsPointCloudExpression &expression, const QString &uri );
//! Compares keys
bool operator==( const QgsPointCloudCacheKey &other ) const; bool operator==( const QgsPointCloudCacheKey &other ) const;
//! Returns the key's IndexedPointCloudNode //! Returns the key's IndexedPointCloudNode

View File

@ -41,10 +41,9 @@
class CORE_EXPORT QgsPointCloudRequest class CORE_EXPORT QgsPointCloudRequest
{ {
public: public:
//! Ctor
QgsPointCloudRequest(); QgsPointCloudRequest();
//! Equality operator
bool operator==( const QgsPointCloudRequest &other ) const; bool operator==( const QgsPointCloudRequest &other ) const;
//! Returns attributes //! Returns attributes

View File

@ -549,18 +549,7 @@ class CORE_EXPORT QgsCoordinateReferenceSystem
*/ */
Q_DECL_DEPRECATED long findMatchingProj() SIP_DEPRECATED; Q_DECL_DEPRECATED long findMatchingProj() SIP_DEPRECATED;
/**
* Overloaded == operator used to compare to CRS's.
*
* Internally it will use authid() for comparison.
*/
bool operator==( const QgsCoordinateReferenceSystem &srs ) const; bool operator==( const QgsCoordinateReferenceSystem &srs ) const;
/**
* Overloaded != operator used to compare to CRS's.
*
* Returns opposite bool value to operator ==
*/
bool operator!=( const QgsCoordinateReferenceSystem &srs ) const; bool operator!=( const QgsCoordinateReferenceSystem &srs ) const;
/** /**

View File

@ -74,34 +74,11 @@ class CORE_EXPORT QgsProjectVersion
*/ */
bool isNull() const; bool isNull() const;
/**
* Boolean equal operator
*/
bool operator==( const QgsProjectVersion &other ) const; bool operator==( const QgsProjectVersion &other ) const;
/**
* Boolean not equal operator
*/
bool operator!=( const QgsProjectVersion &other ) const; bool operator!=( const QgsProjectVersion &other ) const;
/**
* Boolean >= operator
*/
bool operator>=( const QgsProjectVersion &other ) const; bool operator>=( const QgsProjectVersion &other ) const;
/**
* Boolean > operator
*/
bool operator>( const QgsProjectVersion &other ) const; bool operator>( const QgsProjectVersion &other ) const;
/**
* Boolean < operator
*/
bool operator<( const QgsProjectVersion &other ) const; bool operator<( const QgsProjectVersion &other ) const;
/**
* Boolean <= operator
*/
bool operator<=( const QgsProjectVersion &other ) const; bool operator<=( const QgsProjectVersion &other ) const;
private: private:

View File

@ -311,9 +311,6 @@ class CORE_EXPORT QgsAttributeTableConfig
*/ */
bool hasSameColumns( const QgsAttributeTableConfig &other ) const; bool hasSameColumns( const QgsAttributeTableConfig &other ) const;
/**
* Compare this configuration to other.
*/
bool operator!= ( const QgsAttributeTableConfig &other ) const; bool operator!= ( const QgsAttributeTableConfig &other ) const;
private: private:

View File

@ -68,7 +68,6 @@ class CORE_EXPORT QgsMapLayerDependency
// TODO c++20 - replace with = default // TODO c++20 - replace with = default
//! Comparison operator
bool operator==( const QgsMapLayerDependency &other ) const bool operator==( const QgsMapLayerDependency &other ) const
{ {
return layerId() == other.layerId() && origin() == other.origin() && type() == other.type(); return layerId() == other.layerId() && origin() == other.origin() && type() == other.type();

View File

@ -60,10 +60,7 @@ class CORE_EXPORT QgsSimplifyMethod
//! Creates a geometry simplifier according to specified method //! Creates a geometry simplifier according to specified method
static QgsAbstractGeometrySimplifier *createGeometrySimplifier( const QgsSimplifyMethod &simplifyMethod ); static QgsAbstractGeometrySimplifier *createGeometrySimplifier( const QgsSimplifyMethod &simplifyMethod );
//! Equality operator
bool operator==( const QgsSimplifyMethod &v ) const; bool operator==( const QgsSimplifyMethod &v ) const;
//! Inequality operator
bool operator!=( const QgsSimplifyMethod &v ) const; bool operator!=( const QgsSimplifyMethod &v ) const;
protected: protected:

View File

@ -204,9 +204,6 @@ class CORE_EXPORT QgsSnappingConfig
*/ */
void setMaximumScale( double maxScale ); void setMaximumScale( double maxScale );
/**
* Compare this configuration to other.
*/
bool operator!= ( const QgsSnappingConfig::IndividualLayerSettings &other ) const; bool operator!= ( const QgsSnappingConfig::IndividualLayerSettings &other ) const;
// TODO c++20 - replace with = default // TODO c++20 - replace with = default
@ -395,9 +392,6 @@ class CORE_EXPORT QgsSnappingConfig
*/ */
void clearIndividualLayerSettings(); void clearIndividualLayerSettings();
/**
* Compare this configuration to other.
*/
bool operator!= ( const QgsSnappingConfig &other ) const; bool operator!= ( const QgsSnappingConfig &other ) const;
/** /**

View File

@ -203,13 +203,11 @@ class CORE_EXPORT QgsVector
*/ */
QgsVector normalized() const SIP_THROW( QgsException ); QgsVector normalized() const SIP_THROW( QgsException );
//! Equality operator
bool operator==( QgsVector other ) const SIP_HOLDGIL bool operator==( QgsVector other ) const SIP_HOLDGIL
{ {
return qgsDoubleNear( mX, other.mX ) && qgsDoubleNear( mY, other.mY ); return qgsDoubleNear( mX, other.mX ) && qgsDoubleNear( mY, other.mY );
} }
//! Inequality operator
bool operator!=( QgsVector other ) const bool operator!=( QgsVector other ) const
{ {
return !qgsDoubleNear( mX, other.mX ) || !qgsDoubleNear( mY, other.mY ); return !qgsDoubleNear( mX, other.mX ) || !qgsDoubleNear( mY, other.mY );

View File

@ -83,10 +83,8 @@ class CORE_EXPORT QgsRasterMinMaxOrigin
Estimated Estimated
}; };
//! \brief Default constructor.
QgsRasterMinMaxOrigin(); QgsRasterMinMaxOrigin();
//! \brief Equality operator.
bool operator ==( const QgsRasterMinMaxOrigin &other ) const; bool operator ==( const QgsRasterMinMaxOrigin &other ) const;
//////// Getter methods ///////////////////// //////// Getter methods /////////////////////

View File

@ -88,7 +88,6 @@ class CORE_EXPORT QgsSymbolLayerId
// TODO c++20 - replace with = default // TODO c++20 - replace with = default
//! Equality operator
bool operator==( const QgsSymbolLayerId &other ) const bool operator==( const QgsSymbolLayerId &other ) const
{ {
return ( mSymbolKey == other.mSymbolKey && mIndexPath == other.mIndexPath ); return ( mSymbolKey == other.mSymbolKey && mIndexPath == other.mIndexPath );
@ -174,7 +173,6 @@ class CORE_EXPORT QgsSymbolLayerReference
*/ */
QString symbolLayerIdV2() const { return mSymbolLayerId; } QString symbolLayerIdV2() const { return mSymbolLayerId; }
//! Comparison operator
bool operator==( const QgsSymbolLayerReference &other ) const bool operator==( const QgsSymbolLayerReference &other ) const
{ {
return mLayerId == other.mLayerId return mLayerId == other.mLayerId