psppire_box_pack_start_defaults: Change to static inline
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 4 Jul 2020 10:25:06 +0000 (12:25 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 4 Jul 2020 10:25:06 +0000 (12:25 +0200)
This is a simple, one line wrapper around another function.
So having it inline makes sense.

src/ui/gui/helper.c
src/ui/gui/helper.h

index bbaf47e763c590ff3c7091ffd9819ae5c5ea2cb0..cde9d92b8f186a29525a00b24fb55e09b3707771 100644 (file)
@@ -230,12 +230,3 @@ paste_syntax_to_window (gchar *syntax)
 
   return syntax;
 }
-
-
-/* gtk_box_pack_start_defaults is deprecated.
-   Therefore we roll our own until a better solution is found */
-void
-psppire_box_pack_start_defaults (GtkBox *box, GtkWidget *widget)
-{
-  gtk_box_pack_start (box, widget, TRUE, TRUE, 0);
-}
index 9f5264c050bf6deb22ad50b5509ca25739bd976a..c1d93a8c033dbc5db277a74e9a109251a2bbd654 100644 (file)
@@ -57,7 +57,13 @@ union value *text_to_value__ (const gchar *text, const struct fmt_spec *,
 /* Create a deep copy of SRC */
 GtkListStore * clone_list_store (const GtkListStore *src);
 
-void psppire_box_pack_start_defaults (GtkBox *box, GtkWidget *widget);
-
+/* gtk_box_pack_start_defaults is deprecated.
+   Therefore we roll our own until a better solution is found */
+static inline void
+psppire_box_pack_start_defaults (GtkBox *box, GtkWidget *widget)
+{
+  gtk_box_pack_start (box, widget, TRUE, TRUE, 0);
+}
 
 #endif
+