diff options
author | Justin Luth <justin_luth@sil.org> | 2020-04-16 09:03:15 +0300 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-04-16 09:41:13 +0200 |
commit | aeac363fcfd94e1c2fbfd877aa5018ba06811165 (patch) | |
tree | c535ff6a09da41c0df139e0a8193a944b600991a | |
parent | 059f07f9f33460c809a93e0fda1165f5c6f6d805 (diff) |
fix compile: missing semi-colon in < gtk 3.22 block
compile error message:
vcl/unx/gtk3/gtk3gtkframe.cxx:2930:1: error: new types
may not be defined in a return type
enum GdkAnchorHints
^~~~
vcl/unx/gtk3/gtk3gtkframe.cxx:2930:1: note: (perhaps a
semicolon is missing after the definition of ‘GdkAnchorHints’)
It passes Jenkins tests since they ignore this block.
Change-Id: I3da71d114ac4cd82ac4644f3b6cc1f7142810f44
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92334
Tested-by: Jenkins
Reviewed-by: Justin Luth <justin_luth@sil.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | vcl/unx/gtk3/gtk3gtkframe.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx index 84de83107190..99dbbe49162a 100644 --- a/vcl/unx/gtk3/gtk3gtkframe.cxx +++ b/vcl/unx/gtk3/gtk3gtkframe.cxx @@ -2938,7 +2938,7 @@ enum GdkAnchorHints GDK_ANCHOR_FLIP = GDK_ANCHOR_FLIP_X | GDK_ANCHOR_FLIP_Y, GDK_ANCHOR_SLIDE = GDK_ANCHOR_SLIDE_X | GDK_ANCHOR_SLIDE_Y, GDK_ANCHOR_RESIZE = GDK_ANCHOR_RESIZE_X | GDK_ANCHOR_RESIZE_Y -} +}; #endif void GtkSalFrame::signalRealize(GtkWidget*, gpointer frame) |