diff options
author | Jens Bache-Wiig <jbache@trolltech.com> | 2009-03-30 12:51:22 (GMT) |
---|---|---|
committer | Jens Bache-Wiig <jbache@trolltech.com> | 2009-03-30 12:53:16 (GMT) |
commit | 5a10e8f4fa34243499e241fded168bc45de54867 (patch) | |
tree | e1a01fbb66894db87b2788bd6fa90375b2e26bee /src | |
parent | 91421e583d386ef34fbffc96dcc337964780e14e (diff) | |
download | Qt-5a10e8f4fa34243499e241fded168bc45de54867.zip Qt-5a10e8f4fa34243499e241fded168bc45de54867.tar.gz Qt-5a10e8f4fa34243499e241fded168bc45de54867.tar.bz2 |
Add SC_Custombase
This is needed for customers to know where it's safe to add their
own members. It basically follows the same pattern as other extendible
style enums.
Task-number: 244557
Reviewed-by: nrc
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/styles/qstyle.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/styles/qstyle.h b/src/gui/styles/qstyle.h index 6191d51..c1cbbdd 100644 --- a/src/gui/styles/qstyle.h +++ b/src/gui/styles/qstyle.h @@ -453,6 +453,7 @@ public: SC_MdiNormalButton = 0x00000002, SC_MdiCloseButton = 0x00000004, + SC_CustomBase = 0xf0000000, SC_All = 0xffffffff }; Q_DECLARE_FLAGS(SubControls, SubControl) |