vcl/unx/gtk4/a11y.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e1819dfeb0f1436d8b957183758df0a3133c02c1
Author:     Stephan Bergmann <sberg...@redhat.com>
AuthorDate: Tue May 23 12:15:47 2023 +0200
Commit:     Stephan Bergmann <sberg...@redhat.com>
CommitDate: Tue May 23 16:11:04 2023 +0200

    Avoid -Werror=unused-function when building against older GTK4
    
    ...as reported in the comment at
    
<https://gerrit.libreoffice.org/c/core/+/151866/2#message-daf995784c18439280d3280877cfcf73d0bb5e9b>
    "Silence loplugin:external and lopluign:unreffun in (WIP?) a11y.cxx for 
now",
    
    > In file included from 
/home/michi/development/git/libreoffice/vcl/unx/gtk4/a11y.cxx:17:
    > /home/michi/development/git/libreoffice/vcl/unx/gtk4/a11y.hxx:19:24: 
error: ‘void* lo_accessible_get_instance_private(LoAccessible*)’ declared 
‘static’ but never defined [-Werror=unused-function]
    >    19 | static inline gpointer 
lo_accessible_get_instance_private(LoAccessible*);
    >       |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    > /home/michi/development/git/libreoffice/vcl/unx/gtk4/a11y.hxx:21:24: 
error: ‘void* ooo_fixed_get_instance_private(OOoFixed*)’ declared ‘static’ but 
never defined [-Werror=unused-function]
    >    21 | static inline gpointer ooo_fixed_get_instance_private(OOoFixed*);
    >       |                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    Change-Id: I40811235a66e429e2472b50bcbaa3e6fefa6a593
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152147
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sberg...@redhat.com>

diff --git a/vcl/unx/gtk4/a11y.cxx b/vcl/unx/gtk4/a11y.cxx
index 33f1a97ff594..1b9b04e86e01 100644
--- a/vcl/unx/gtk4/a11y.cxx
+++ b/vcl/unx/gtk4/a11y.cxx
@@ -14,10 +14,10 @@
 #include <unx/gtk/gtkframe.hxx>
 #include <gtk/gtk.h>
 
-#include "a11y.hxx"
-
 #if GTK_CHECK_VERSION(4, 9, 0)
 
+#include "a11y.hxx"
+
 #define OOO_TYPE_FIXED (ooo_fixed_get_type())
 #define OOO_FIXED(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), OOO_TYPE_FIXED, 
OOoFixed))
 // #define OOO_IS_FIXED(obj)        (G_TYPE_CHECK_INSTANCE_TYPE((obj), 
OOO_TYPE_FIXED))

Reply via email to