Skip to content

Commit f66f9aa

Browse files
committedSep 7, 2013
Fix build error, add missing enum to sip file
1 parent d334672 commit f66f9aa

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
 

‎python/core/qgsvectorlayer.sip

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,15 @@ class QgsVectorLayer : QgsMapLayer
120120
Color, /* color @added in 1.9 */
121121
};
122122

123+
/** Types of feature form suppression after feature creation
124+
* @note added in 2.1 */
125+
enum FeatureFormSuppress
126+
{
127+
SuppressDefault = 0, // use the application-wide setting
128+
SuppressOn = 1,
129+
SuppressOff = 2
130+
};
131+
123132
struct RangeData
124133
{
125134
RangeData();

0 commit comments

Comments
 (0)
Please sign in to comment.