summaryrefslogtreecommitdiff
path: root/libgnomekbd/gkbd-indicator.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-indicator.h
parent2e7084070ea01954a96306d5ee66274fb59906f1 (diff)
downloadlibgnomekbd-b85937388ed9aa2a69d5ec842bc94a45e49480fa.tar.gz
Remove the `extern` keyword
Also make all the constant arrays internal.
Diffstat (limited to 'libgnomekbd/gkbd-indicator.h')
-rw-r--r--libgnomekbd/gkbd-indicator.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/libgnomekbd/gkbd-indicator.h b/libgnomekbd/gkbd-indicator.h
index 7f69405..e7796c0 100644
--- a/libgnomekbd/gkbd-indicator.h
+++ b/libgnomekbd/gkbd-indicator.h
@@ -46,23 +46,23 @@ struct _GkbdIndicatorClass {
void (*reinit_ui) (GkbdIndicator * gki);
};
-extern GType gkbd_indicator_get_type (void);
+GType gkbd_indicator_get_type (void);
-extern GtkWidget *gkbd_indicator_new (void);
+GtkWidget *gkbd_indicator_new (void);
-extern void gkbd_indicator_reinit_ui (GkbdIndicator * gki);
+void gkbd_indicator_reinit_ui (GkbdIndicator * gki);
-extern void gkbd_indicator_set_angle (GkbdIndicator * gki, gdouble angle);
+void gkbd_indicator_set_angle (GkbdIndicator * gki, gdouble angle);
-extern XklEngine *gkbd_indicator_get_xkl_engine (void);
+XklEngine *gkbd_indicator_get_xkl_engine (void);
-extern gchar **gkbd_indicator_get_group_names (void);
+gchar **gkbd_indicator_get_group_names (void);
-extern gchar *gkbd_indicator_get_image_filename (guint group);
+gchar *gkbd_indicator_get_image_filename (guint group);
-extern gdouble gkbd_indicator_get_max_width_height_ratio (void);
+gdouble gkbd_indicator_get_max_width_height_ratio (void);
-extern void
+void
gkbd_indicator_set_parent_tooltips (GkbdIndicator * gki, gboolean ifset);
G_END_DECLS