We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f365257 commit 75aa726Copy full SHA for 75aa726
python/core/qgsattributeaction.sip
@@ -83,6 +83,9 @@ class QgsAttributeAction
83
//! Removes all actions
84
void clearActions();
85
86
+ //! List all actions
87
+ const QList<QgsAction>& listActions();
88
+
89
//! Return the layer
90
QgsVectorLayer *layer();
91
src/core/qgsattributeaction.h
@@ -135,6 +135,9 @@ class CORE_EXPORT QgsAttributeAction
135
136
void clearActions() { mActions.clear(); }
137
138
139
+ const QList<QgsAction>& listActions() { return mActions; }
140
141
142
QgsVectorLayer *layer() { return mLayer; }
143
0 commit comments