diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2020-03-28 21:10:09 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-29 09:06:43 +0200 |
commit | ba5b51a22848c3e4af38676197bc1f663b33bb2e (patch) | |
tree | 5b91ed38a6a4cd2ffd1186eb741784fcb04d4e1f /include/unotools | |
parent | 64148ff9e6d50f0f7457e29567b949ee6a2cf707 (diff) |
Fix is_typed_flags for ConfigItemMode (unotools/configitem)
Since DelayedUpdate removed with:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=67ff7348756ec88d09fc00e6d284ba5b579e9b33
author Noel Grandin <noel.grandin@collabora.co.uk> 2018-12-06 10:05:06 +0200
committer Noel Grandin <noel.grandin@collabora.co.uk> 2018-12-07 10:35:44 +0100
commit 67ff7348756ec88d09fc00e6d284ba5b579e9b33 (patch)
tree d9bc9015abadce440e6637e280286e04e9ba062a
parent 1e6cc2c8564e86465594f6651490f529dafb3aaf (diff)
remove unused ConfigItemMode::DelayedUpdate
unused ever since
commit c1758889cbd5e8e4afb1044425c908715eb3e1cd
Date: Fri Nov 11 22:48:37 2011 +0100
Heavily simplified utl::ConfigManager.
and rename ConfigItemMode::ImmediateUpdate to NONE, since it doesn't
mean that anymore
Change-Id: I3f5e5a63cbbc12f15a4af104fc6e007cdf10cab3
Change-Id: Idc4c4f0a90bfce26483f2f4d66b47c263bcb5954
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91316
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/unotools')
-rw-r--r-- | include/unotools/configitem.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unotools/configitem.hxx b/include/unotools/configitem.hxx index 16153e20715f..0c24857aef7b 100644 --- a/include/unotools/configitem.hxx +++ b/include/unotools/configitem.hxx @@ -52,7 +52,7 @@ enum class ConfigItemMode namespace o3tl { - template<> struct typed_flags<ConfigItemMode> : is_typed_flags<ConfigItemMode, 0x07> {}; + template<> struct typed_flags<ConfigItemMode> : is_typed_flags<ConfigItemMode, 0x06> {}; } namespace utl |