[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - sfx2/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Wed Dec 9 20:07:21 UTC 2020
sfx2/source/sidebar/TabBar.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit ebc76496be42f1ca9141c94cc544a3fa922cad38
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Tue Dec 1 10:24:26 2020 +0000
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Wed Dec 9 21:06:48 2020 +0100
cid#1470371 Uninitialized scalar field
Change-Id: Ida60f251e83ea150e563bc0ef5a2be64f481fb08
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107501
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sfx2/source/sidebar/TabBar.cxx b/sfx2/source/sidebar/TabBar.cxx
index 9738ae6ca29f..fdbf3cb01b15 100644
--- a/sfx2/source/sidebar/TabBar.cxx
+++ b/sfx2/source/sidebar/TabBar.cxx
@@ -237,6 +237,8 @@ TabBar::Item::Item(TabBar& rTabBar)
: mrTabBar(rTabBar)
, mxBuilder(Application::CreateBuilder(rTabBar.GetContainer(), "sfx/ui/tabbutton.ui"))
, mxButton(mxBuilder->weld_toolbar("button"))
+ , mbIsHidden(false)
+ , mbIsHiddenByDefault(false)
{
}
More information about the Libreoffice-commits
mailing list