diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-25 10:39:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-25 11:41:23 +0100 |
commit | cdd3963a3a7c521aaddd0059324452cfd7836fdd (patch) | |
tree | 9091fa191086732fb561279d21213e8c2de27f82 | |
parent | 00c4595646d109b0d387d419eddf933ebcd878cc (diff) |
no RSWND anymore
Change-Id: I5547a0d19ae60ea06dd666c77deaf0de910975d0
-rw-r--r-- | include/tools/rc.h | 8 | ||||
-rw-r--r-- | rsc/inc/rscdb.hxx | 2 |
2 files changed, 0 insertions, 10 deletions
diff --git a/include/tools/rc.h b/include/tools/rc.h index e0a464a003bd..aa9f24ab7a9f 100644 --- a/include/tools/rc.h +++ b/include/tools/rc.h @@ -24,14 +24,6 @@ #include <o3tl/typed_flags_set.hxx> // Attributes in *.src files -enum class RSWND { - NONE = 0x00, - DISABLED = 0x01, // "Disable" attribute - CLIENTSIZE = 0x02 // "OutputSize" attribute -}; -namespace o3tl { - template<> struct typed_flags<RSWND> : is_typed_flags<RSWND, 0x03> {}; -} // For all menu resources: enum class RscMenu { diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx index 4242f5e02de6..9f9a50cfc01a 100644 --- a/rsc/inc/rscdb.hxx +++ b/rsc/inc/rscdb.hxx @@ -45,7 +45,6 @@ enum class ToolBoxItemType; enum class ButtonType; enum class WindowAlign; enum class SfxStyleFamily; -enum class RSWND; enum class MapUnit; struct WriteRcContext @@ -146,7 +145,6 @@ class RscTypCont void SETCONST( RscConst *, const char *, sal_uInt32 ); void SETCONST( RscConst *, Atom, sal_uInt32 ); inline void SETCONST( RscConst *p1, const char * p2, SymbolType p3 ) { SETCONST(p1, p2, static_cast<sal_uInt32>(p3)); } - inline void SETCONST( RscConst *p1, Atom p2, RSWND p3 ) { SETCONST(p1, p2, static_cast<sal_uInt32>(p3)); } inline void SETCONST( RscConst *p1, const char * p2, KeyFuncType p3 ) { SETCONST(p1, p2, static_cast<sal_uInt32>(p3)); } inline void SETCONST( RscConst *p1, Atom p2, MenuItemBits p3 ) { SETCONST(p1, p2, static_cast<sal_uInt32>(p3)); } inline void SETCONST( RscConst *p1, const char * p2, SfxStyleFamily p3 ) { SETCONST(p1, p2, static_cast<sal_uInt16>(p3)); } |