[Libreoffice-commits] core.git: vcl/unx
Justin Luth (via logerrit)
logerrit at kemper.freedesktop.org
Thu Apr 16 07:41:45 UTC 2020
vcl/unx/gtk3/gtk3gtkframe.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit aeac363fcfd94e1c2fbfd877aa5018ba06811165
Author: Justin Luth <justin_luth at sil.org>
AuthorDate: Thu Apr 16 09:03:15 2020 +0300
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Apr 16 09:41:13 2020 +0200
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 at sil.org>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
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)
More information about the Libreoffice-commits
mailing list