Remove inline qualifiers to keep gcc 4.2 happy
[pspp-builds.git] / lib / gtksheet / gsheet-column-iface.c
index 36fb5e214bc5e47ca58552575cd55f973c21828f..1cd7996d4823def6aafb0501a2bdf466f89d52e4 100644 (file)
@@ -41,7 +41,7 @@ static guint sheet_column_signals[LAST_SIGNAL];
 static void      g_sheet_column_base_init   (gpointer g_class);
 
 
-inline GType
+GType
 g_sheet_column_get_type (void)
 {
   static GType sheet_column_type = 0;
@@ -100,7 +100,7 @@ g_sheet_column_base_init (gpointer g_class)
 }
 
 
-inline void
+void
 g_sheet_column_set_width (GSheetColumn *column, glong col, gint size)
 {
   g_return_if_fail (G_IS_SHEET_COLUMN (column));
@@ -110,7 +110,7 @@ g_sheet_column_set_width (GSheetColumn *column, glong col, gint size)
 }
 
 
-inline gint
+gint
 g_sheet_column_get_width (const GSheetColumn *column, glong col)
 {
   g_return_val_if_fail (G_IS_SHEET_COLUMN (column), -1);
@@ -122,7 +122,7 @@ g_sheet_column_get_width (const GSheetColumn *column, glong col)
 
 
 
-inline gboolean
+gboolean
 g_sheet_column_get_visibility(const GSheetColumn *column,
                                            glong col)
 {
@@ -135,7 +135,7 @@ g_sheet_column_get_visibility(const GSheetColumn *column,
 
 }
 
-inline gboolean
+gboolean
 g_sheet_column_get_sensitivity(const GSheetColumn *column,
                                             glong col)
 {
@@ -149,7 +149,7 @@ g_sheet_column_get_sensitivity(const GSheetColumn *column,
 }
 
 
-inline GtkSheetButton *
+GtkSheetButton *
 g_sheet_column_get_button(const GSheetColumn *column,
                              glong col)
 {
@@ -165,7 +165,7 @@ g_sheet_column_get_button(const GSheetColumn *column,
   return button;
 }
 
-inline GtkJustification
+GtkJustification
 g_sheet_column_get_justification(const GSheetColumn *column,
                                     glong col)
 {
@@ -176,7 +176,7 @@ g_sheet_column_get_justification(const GSheetColumn *column,
   return (G_SHEET_COLUMN_GET_IFACE (column)->get_justification) (column, col);
 }
 
-inline gchar *
+gchar *
 g_sheet_column_get_subtitle (const GSheetColumn *column, glong col)
 {
   g_return_val_if_fail (G_IS_SHEET_COLUMN (column), NULL);
@@ -189,7 +189,7 @@ g_sheet_column_get_subtitle (const GSheetColumn *column, glong col)
 
 
 
-inline gint
+gint
 g_sheet_column_get_left_text_column (const GSheetColumn *column,
                                         glong col)
 {
@@ -202,7 +202,7 @@ g_sheet_column_get_left_text_column (const GSheetColumn *column,
 
 }
 
-inline gint
+gint
 g_sheet_column_get_right_text_column (const GSheetColumn *column,
                                          glong col)
 {
@@ -215,7 +215,7 @@ g_sheet_column_get_right_text_column (const GSheetColumn *column,
 
 }
 
-inline void
+void
 g_sheet_column_set_left_text_column (const GSheetColumn *column,
                                         glong col, gint i)
 {
@@ -227,7 +227,7 @@ g_sheet_column_set_left_text_column (const GSheetColumn *column,
 }
 
 
-inline void
+void
 g_sheet_column_set_right_text_column (const GSheetColumn *column,
                                          glong col, gint i)
 {
@@ -237,7 +237,7 @@ g_sheet_column_set_right_text_column (const GSheetColumn *column,
     (G_SHEET_COLUMN_GET_IFACE (column)->set_right_text_column) (column, col, i);
 }
 
-inline glong
+glong
 g_sheet_column_get_column_count(const GSheetColumn *geo)
 {
   g_return_val_if_fail (G_IS_SHEET_COLUMN (geo), -1);
@@ -247,7 +247,7 @@ g_sheet_column_get_column_count(const GSheetColumn *geo)
   return (G_SHEET_COLUMN_GET_IFACE (geo)->get_column_count) (geo);
 }
 
-inline gint
+gint
 g_sheet_column_start_pixel(const GSheetColumn *geo, glong col)
 {
   gint i;
@@ -269,7 +269,7 @@ g_sheet_column_start_pixel(const GSheetColumn *geo, glong col)
 
 
 
-inline void
+void
 g_sheet_column_columns_changed(GSheetColumn *geo,
                                 glong first, glong n_columns)
 {