summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/svl/style.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/style.hxx b/include/svl/style.hxx
index fd27d8ebdf70..9ed7122d4238 100644
--- a/include/svl/style.hxx
+++ b/include/svl/style.hxx
@@ -70,11 +70,11 @@ enum class SfxStyleSearchBits {
ReadOnly = 0x2000, ///< readonly styles (search mask)
Used = 0x4000, ///< used styles (search mask)
UserDefined = 0x8000, ///< user defined styles (search mask)
- AllVisible = 0xFDFF, ///< all styles
- All = 0xFFFF, ///< all styles
+ AllVisible = 0xe07f, ///< all visible styles
+ All = 0xe27f, ///< all styles
};
namespace o3tl {
- template<> struct typed_flags<SfxStyleSearchBits> : is_typed_flags<SfxStyleSearchBits, 0xffff> {};
+ template<> struct typed_flags<SfxStyleSearchBits> : is_typed_flags<SfxStyleSearchBits, 0xe27f> {};
}