Skip to content

Commit d468e5b

Browse files
committedFeb 19, 2018
[sipify] fix Q_FLAG declaration
1 parent 4caf96f commit d468e5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎scripts/sipify.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ sub detect_non_method_member{
596596
next;
597597
}
598598
# Skip Q_OBJECT, Q_PROPERTY, Q_ENUM, Q_GADGET etc.
599-
if ($LINE =~ m/^\s*Q_(OBJECT|ENUMS|ENUM|PROPERTY|GADGET|DECLARE_METATYPE|DECLARE_TYPEINFO|DECL_DEPRECATED|NOWARN_DEPRECATED_(PUSH|POP)).*?$/){
599+
if ($LINE =~ m/^\s*Q_(OBJECT|ENUMS|ENUM|FLAG|PROPERTY|GADGET|DECLARE_METATYPE|DECLARE_TYPEINFO|DECL_DEPRECATED|NOWARN_DEPRECATED_(PUSH|POP))\b.*?$/){
600600
next;
601601
}
602602

0 commit comments

Comments
 (0)
Please sign in to comment.