diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-09-09 14:09:37 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-09-09 17:36:20 +0200 |
commit | b829325fb407250849d9508ed32176b08006dd0a (patch) | |
tree | 8d2b06e96e4a34e0b921f5fa9acb394cbb7201bb /vcl/unx | |
parent | f09836cae28eaf43b895d9ee14f071f5e1248623 (diff) |
silence bogus -Wmaybe-uninitialized
Change-Id: I702b4818f05a606da30a643e13bfcd2c98ba412a
Reviewed-on: https://gerrit.libreoffice.org/60215
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/gtk3/gtk3gtkinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx index 34d7d75ca954..e0cee55f78a4 100644 --- a/vcl/unx/gtk3/gtk3gtkinst.cxx +++ b/vcl/unx/gtk3/gtk3gtkinst.cxx @@ -1801,7 +1801,7 @@ public: } virtual void set_mode(VclSizeGroupMode eVclMode) override { - GtkSizeGroupMode eGtkMode; + GtkSizeGroupMode eGtkMode(GTK_SIZE_GROUP_NONE); switch (eVclMode) { case VclSizeGroupMode::NONE: |