Remove inline qualifiers to keep gcc 4.2 happy
authorJohn Darrington <john@darrington.wattle.id.au>
Tue, 25 Mar 2008 09:19:28 +0000 (09:19 +0000)
committerJohn Darrington <john@darrington.wattle.id.au>
Tue, 25 Mar 2008 09:19:28 +0000 (09:19 +0000)
12 files changed:
lib/gtksheet/gsheet-column-iface.c
lib/gtksheet/gsheet-hetero-column.c
lib/gtksheet/gsheet-row-iface.c
lib/gtksheet/gsheetmodel.c
lib/gtksheet/gtksheet.c
src/libpspp/abt.c
src/libpspp/hash.c
src/ui/gui/psppire-case-file.c
src/ui/gui/psppire-data-store.c
src/ui/gui/psppire-data-store.h
src/ui/gui/psppire-dict.c
src/ui/gui/psppire-dict.h

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)
 {
index 0cda0cf357a2092f5b2e4ba9e1e4fac0fdfda05e..ecc06cc54b76280defb1168c99946979cf27bc1d 100644 (file)
@@ -226,7 +226,7 @@ g_sheet_hetero_column_set_button_label (GSheetHeteroColumn *geo,
 
 
 
-inline void
+void
 g_sheet_hetero_column_set_width (GSheetHeteroColumn *geo, glong i, gint size)
 {
   GSheetColumn *iface = G_SHEET_COLUMN (geo);
index b56bfddef9f34401d72327f61691f81d1f58d2fb..1512737fdab0ad4108c307731ec5cb50cbec2af4 100644 (file)
@@ -171,7 +171,7 @@ g_sheet_row_get_button(const GSheetRow *row_geo,
   return button;
 }
 
-inline gchar *
+gchar *
 g_sheet_row_get_subtitle (const GSheetRow *row_geo, glong row)
 {
   g_return_val_if_fail (G_IS_SHEET_ROW (row_geo), NULL);
index 3fa8f0afdcfd8dc7a844fbaba833375ebdc4d645..0d1a3f560a60c8edee89d9e7f8d0ff0553aa660a 100644 (file)
@@ -37,7 +37,7 @@ static guint sheet_model_signals[LAST_SIGNAL] = { 0 };
 static void      g_sheet_model_base_init   (gpointer           g_class);
 
 
-inline GType
+GType
 g_sheet_model_get_type (void)
 {
   static GType sheet_model_type = 0;
@@ -148,7 +148,7 @@ g_sheet_model_base_init (gpointer g_class)
  * Returns: True if strings obtained with get_string should be freed by the
  * sheet when no longer required.
  **/
-inline  gboolean
+gboolean
 g_sheet_model_free_strings (const GSheetModel *sheet_model)
 {
   g_return_val_if_fail (G_IS_SHEET_MODEL (sheet_model), FALSE);
@@ -166,7 +166,7 @@ g_sheet_model_free_strings (const GSheetModel *sheet_model)
  * Retrieves the datum at location ROW, COLUMN in the form of a string.
  * Returns: The string representation of the datum, or NULL on error.
  **/
-inline gchar *
+gchar *
 g_sheet_model_get_string (const GSheetModel *sheet_model,
                          glong row, glong column)
 {
@@ -335,7 +335,7 @@ g_sheet_model_columns_deleted (GSheetModel *sheet_model,
  *
  * Returns: TRUE if the cell is editable, FALSE otherwise
  **/
-inline gboolean
+gboolean
 g_sheet_model_is_editable (const GSheetModel *model,
                             glong row, glong column)
 {
@@ -356,7 +356,7 @@ g_sheet_model_is_editable (const GSheetModel *model,
  *
  * Returns: TRUE if the cell is visible, FALSE otherwise
  **/
-inline gboolean
+gboolean
 g_sheet_model_is_visible (const GSheetModel *model,
                          glong row, glong column)
 {
@@ -379,7 +379,7 @@ g_sheet_model_is_visible (const GSheetModel *model,
  * Returns the foreground colour of the cell at @row, @column
  * Returns: the foreground colour, or NULL on error.
  **/
-inline const GdkColor *
+const GdkColor *
 g_sheet_model_get_foreground (const GSheetModel *model,
                                glong row, glong column)
 {
@@ -401,7 +401,7 @@ g_sheet_model_get_foreground (const GSheetModel *model,
  * Returns the background colour of the cell at @row, @column
  * Returns: the background colour, or NULL on error.
  **/
-inline const GdkColor *
+const GdkColor *
 g_sheet_model_get_background (const GSheetModel *model,
                                glong row, glong column)
 {
@@ -423,7 +423,7 @@ g_sheet_model_get_background (const GSheetModel *model,
  * Returns the justification of the cell at @row, @column
  * Returns: the justification, or NULL on error.
  **/
-inline const GtkJustification *
+const GtkJustification *
 g_sheet_model_get_justification (const GSheetModel *model,
                                   glong row, glong column)
 {
@@ -445,7 +445,7 @@ g_sheet_model_get_justification (const GSheetModel *model,
  * Returns the font description of the cell at @row, @column
  * Returns: the font description, or NULL on error.
  **/
-inline const PangoFontDescription *
+const PangoFontDescription *
 g_sheet_model_get_font_desc(const GSheetModel *model,
                              glong row, glong column)
 {
@@ -466,7 +466,7 @@ g_sheet_model_get_font_desc(const GSheetModel *model,
  * Returns the cell border of the cell at @row, @column
  * Returns: the cell border, or NULL on error.
  **/
-inline const GtkSheetCellBorder *
+const GtkSheetCellBorder *
 g_sheet_model_get_cell_border (const GSheetModel *model,
                                 glong row, glong column)
 {
@@ -486,7 +486,7 @@ g_sheet_model_get_cell_border (const GSheetModel *model,
  *
  * Returns the total number of columns represented by the model
  **/
-inline glong
+glong
 g_sheet_model_get_column_count (const GSheetModel *model)
 {
   g_return_val_if_fail (G_IS_SHEET_MODEL (model), -1);
@@ -500,7 +500,7 @@ g_sheet_model_get_column_count (const GSheetModel *model)
  *
  * Returns the total number of rows represented by the model
  **/
-inline gint
+gint
 g_sheet_model_get_row_count(const GSheetModel *model)
 {
   g_return_val_if_fail (G_IS_SHEET_MODEL (model), -1);
index 1987ab0ad1a20278ecc825512226c6465ecc0435..d2db58009a7432dbcfe70f03467489949e285b5a 100644 (file)
@@ -7839,7 +7839,7 @@ gtk_sheet_button_new (void)
 }
 
 
-inline void
+void
 gtk_sheet_button_free (GtkSheetButton *button)
 {
   if (!button) return ;
index 53e66f5118f677516b9bb358bfa6acc026f762d2..74b2ceb387f54d04e669cfbadb7eb4e7589c89a3 100644 (file)
@@ -118,7 +118,7 @@ abt_insert (struct abt *abt, struct abt_node *node)
    the tree, if AFTER is true, or the last node, if AFTER is
    false. */
 static inline void
-insert_relative (struct abt *abt, struct abt_node *p, bool after,
+insert_relative (struct abt *abt, const struct abt_node *p, bool after,
                  struct abt_node *node)
 {
   node->down[0] = NULL;
@@ -145,8 +145,8 @@ insert_relative (struct abt *abt, struct abt_node *p, bool after,
           p = p->down[dir];
           dir = !after;
         }
-      p->down[dir] = node;
-      node->up = p;
+      ((struct abt_node *) p)->down[dir] = node;
+      node->up = (struct abt_node *) p;
       abt_reaugmented (abt, node);
     }
 
@@ -167,7 +167,7 @@ abt_insert_after (struct abt *abt,
                   const struct abt_node *p, struct abt_node *node)
 {
   assert (abt->compare == NULL);
-  insert_relative (abt, (struct abt_node *) p, true, node);
+  insert_relative (abt, p, true, node);
 }
 
 /* Inserts NODE before node P in ABT.
@@ -180,7 +180,7 @@ abt_insert_before (struct abt *abt,
                    const struct abt_node *p, struct abt_node *node)
 {
   assert (abt->compare == NULL);
-  insert_relative (abt, (struct abt_node *) p, false, node);
+  insert_relative (abt, p, false, node);
 }
 
 /* Deletes P from ABT. */
index 9f1079a29a4673ccc2a3fb858360d7e7a246336f..9da3deb120a92ba0ee3423f78441ad85dd9ab22f 100644 (file)
@@ -449,7 +449,7 @@ hsh_sort_copy (struct hsh_table *h)
    to a pointer to that entry; otherwise returns a pointer to a
    NULL entry which *must* be used to insert a new entry having
    the same key data.  */
-inline void **
+void **
 hsh_probe (struct hsh_table *h, const void *target)
 {
   unsigned i;
index 0fc7ab35b2722be04b7b97abd661963f7dbd6275..2edfec89ae0a036c3791309ba432e16567839706 100644 (file)
@@ -278,7 +278,7 @@ psppire_case_file_insert_case (PsppireCaseFile *cf,
 }
 
 
-inline casenumber
+casenumber
 psppire_case_file_get_case_count (const PsppireCaseFile *cf)
 {
   g_return_val_if_fail (cf, FALSE);
index d1470dafc9f3407f0b8021e3bab830f3d570e99e..afbe3d2fe31f82fb83b4149a2a9656b902d9bc7a 100644 (file)
@@ -68,7 +68,7 @@ enum  {FONT_CHANGED,
 static guint signals [n_SIGNALS];
 
 
-inline GType
+GType
 psppire_data_store_get_type (void)
 {
   static GType data_store_type = 0;
@@ -162,7 +162,7 @@ psppire_data_store_get_var_count (const GSheetModel *model)
   return psppire_dict_get_var_cnt (store->dict);
 }
 
-inline casenumber
+casenumber
 psppire_data_store_get_case_count (const PsppireDataStore *store)
 {
   return psppire_case_file_get_case_count (store->case_file);
@@ -174,7 +174,7 @@ psppire_data_store_get_value_count (const PsppireDataStore *store)
   return psppire_dict_get_value_cnt (store->dict);
 }
 
-inline casenumber
+casenumber
 psppire_data_store_get_case_count_wrapper (const GSheetModel *model)
 {
   const PsppireDataStore *store = PSPPIRE_DATA_STORE (model);
index f916ded883bbccb843b196f027dafd607e00767d..55dcf0683d7e49e96d699b870487244207367027 100644 (file)
@@ -142,7 +142,7 @@ gboolean psppire_data_store_set_string (PsppireDataStore *ds,
                                        const gchar *text,
                                        glong row, glong column);
 
-casenumber psppire_data_store_get_case_count (const PsppireDataStore *ds);
+inline casenumber psppire_data_store_get_case_count (const PsppireDataStore *ds);
 size_t psppire_data_store_get_value_count (const PsppireDataStore *ds);
 
 #ifdef __cplusplus
index db24bbf0a8f4492e32fa0862a32daece4685a32a..e6f1373a54d969ed76de022e0135924ace674c8c 100644 (file)
@@ -487,7 +487,7 @@ psppire_dict_check_name (const PsppireDict *dict,
 }
 
 
-inline gint
+gint
 psppire_dict_get_next_value_idx (const PsppireDict *dict)
 {
   return dict_get_next_value_idx (dict->dict);
index 1bf8bd3523b849aac1c2918f2794895c088714af..f645b355a6b0d5b90100fc60606e96d8240b1968 100644 (file)
@@ -96,7 +96,7 @@ void psppire_dict_resize_variable (PsppireDict *,
 gboolean psppire_dict_check_name (const PsppireDict *dict,
                              const gchar *name, gboolean report);
 
-gint psppire_dict_get_next_value_idx (const PsppireDict *dict);
+inline gint psppire_dict_get_next_value_idx (const PsppireDict *dict);
 
 gboolean psppire_dict_rename_var (PsppireDict *dict, struct variable *v,
                              const gchar *text);