Skip to content

Commit

Permalink
fix SIP_SKIP macro placement (#54911)
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Oct 11, 2023
1 parent f8edf72 commit 31c6b81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/3d/qgsabstract3dsymbol.h
Expand Up @@ -27,7 +27,7 @@ class QString;
class QgsReadWriteContext;
class Qgs3DSceneExporter;

namespace Qt3DCore { class QEntity; } SIP_SKIP
namespace Qt3DCore SIP_SKIP { class QEntity; }


/**
Expand Down Expand Up @@ -79,7 +79,7 @@ class CORE_EXPORT QgsAbstract3DSymbol
QgsPropertyCollection &dataDefinedProperties() { return mDataDefinedProperties; }

//! Returns a reference to the symbol layer's property collection, used for data defined overrides.
const QgsPropertyCollection &dataDefinedProperties() const { return mDataDefinedProperties; } SIP_SKIP
const QgsPropertyCollection &dataDefinedProperties() const SIP_SKIP { return mDataDefinedProperties; }

//! Sets the symbol layer's property collection, used for data defined overrides.
void setDataDefinedProperties( const QgsPropertyCollection &collection ) { mDataDefinedProperties = collection; }
Expand Down

0 comments on commit 31c6b81

Please sign in to comment.