[Libreoffice-commits] core.git: include/unotools

Julien Nabet (via logerrit) logerrit at kemper.freedesktop.org
Sun Mar 29 07:07:21 UTC 2020


 include/unotools/configitem.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ba5b51a22848c3e4af38676197bc1f663b33bb2e
Author:     Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Sat Mar 28 21:10:09 2020 +0100
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Sun Mar 29 09:06:43 2020 +0200

    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 at collabora.co.uk>     2018-12-06 10:05:06 +0200
    committer       Noel Grandin <noel.grandin at 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 at collabora.co.uk>

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


More information about the Libreoffice-commits mailing list