summaryrefslogtreecommitdiff
path: root/libgnomekbd/gkbd-util.h
diff options
context:
space:
mode:
authorCorentin Noël <tintou@noel.tf>2022-06-14 18:53:47 +0200
committerCorentin Noël <tintou@noel.tf>2022-06-14 18:55:31 +0200
commitb85937388ed9aa2a69d5ec842bc94a45e49480fa (patch)
tree9274c886ccb6817bc8438c08b5a9ec9682d30d56 /libgnomekbd/gkbd-util.h
parent2e7084070ea01954a96306d5ee66274fb59906f1 (diff)
downloadlibgnomekbd-b85937388ed9aa2a69d5ec842bc94a45e49480fa.tar.gz
Remove the `extern` keyword
Also make all the constant arrays internal.
Diffstat (limited to 'libgnomekbd/gkbd-util.h')
-rw-r--r--libgnomekbd/gkbd-util.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libgnomekbd/gkbd-util.h b/libgnomekbd/gkbd-util.h
index fb6e9c1..2b5557f 100644
--- a/libgnomekbd/gkbd-util.h
+++ b/libgnomekbd/gkbd-util.h
@@ -23,17 +23,17 @@
#include <glib.h>
#include <gdk/gdk.h>
-extern void gkbd_install_glib_log_appender (void);
+void gkbd_install_glib_log_appender (void);
-extern GdkRectangle *gkbd_preview_load_position (void);
+GdkRectangle *gkbd_preview_load_position (void);
-extern void gkbd_preview_save_position (GdkRectangle * rect);
+void gkbd_preview_save_position (GdkRectangle * rect);
/* Missing in glib */
-extern gboolean gkbd_strv_remove (gchar ** arr, const gchar * element);
+gboolean gkbd_strv_remove (gchar ** arr, const gchar * element);
-extern gchar **gkbd_strv_append (gchar ** arr, gchar * element);
+gchar **gkbd_strv_append (gchar ** arr, gchar * element);
-extern void gkbd_strv_behead (gchar ** arr);
+void gkbd_strv_behead (gchar ** arr);
#endif