diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-01-03 16:44:53 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-01-04 09:45:39 +0100 |
commit | b29f6e605210477ab9e13f0dad76d83023b360f2 (patch) | |
tree | ab84324c43b98ff85ed8f8e080900e701cc1b6cd /unotools | |
parent | f8799582e4311edc45c01678e787344d98ddc040 (diff) |
Add apparently missing ! to GlobalEventConfig_Impl::hasElements
...which had been like that ever since the code's introduction in
026f5ef5eee4bc75dafbdc00216808daf5acce7e "INTEGRATION: CWS docking1"
Change-Id: I2d5ae3a03aaf75a0f8df40c641f7233c6b19630e
Reviewed-on: https://gerrit.libreoffice.org/65848
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/eventcfg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/eventcfg.cxx b/unotools/source/config/eventcfg.cxx index ca2e1dac0082..8c0b62781b6f 100644 --- a/unotools/source/config/eventcfg.cxx +++ b/unotools/source/config/eventcfg.cxx @@ -293,7 +293,7 @@ Type const & GlobalEventConfig_Impl::getElementType( ) bool GlobalEventConfig_Impl::hasElements() const { - return m_eventBindingHash.empty(); + return !m_eventBindingHash.empty(); } // and now the wrapper |