diff options
author | Kent Hansen <kent.hansen@nokia.com> | 2010-03-24 13:05:38 (GMT) |
---|---|---|
committer | Kent Hansen <kent.hansen@nokia.com> | 2010-03-24 13:09:32 (GMT) |
commit | 9540e2b5d67af9a26f431c3e8636bff9946e88c4 (patch) | |
tree | b040515bf5b541a82f8a3a8cdd809777ac2b71dd /src/script/api/qscriptengine.h | |
parent | 739f15838f73e84cb5e5ae58bb8adc267bc1b79c (diff) | |
download | Qt-9540e2b5d67af9a26f431c3e8636bff9946e88c4.zip Qt-9540e2b5d67af9a26f431c3e8636bff9946e88c4.tar.gz Qt-9540e2b5d67af9a26f431c3e8636bff9946e88c4.tar.bz2 |
QtScript: Add QObjectWrapOption for not exposing slots
This makes it possible to have a prototype object in place that
handles all slot calls, rather than having the slots be recreated
in each wrapper object.
Task-number: QTBUG-3637
Reviewed-by: Simon Hausmann
Diffstat (limited to 'src/script/api/qscriptengine.h')
-rw-r--r-- | src/script/api/qscriptengine.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/script/api/qscriptengine.h b/src/script/api/qscriptengine.h index 2ce3183..76461bc 100644 --- a/src/script/api/qscriptengine.h +++ b/src/script/api/qscriptengine.h @@ -125,6 +125,7 @@ public: ExcludeSuperClassContents = 0x0006, SkipMethodsInEnumeration = 0x0008, ExcludeDeleteLater = 0x0010, + ExcludeSlots = 0x0020, AutoCreateDynamicProperties = 0x0100, PreferExistingWrapperObject = 0x0200 |