Remove unused sheetmodel function
authorJohn Darrington <john@darrington.wattle.id.au>
Wed, 3 Dec 2008 23:31:22 +0000 (08:31 +0900)
committerJohn Darrington <john@darrington.wattle.id.au>
Wed, 3 Dec 2008 23:31:22 +0000 (08:31 +0900)
lib/gtksheet/gsheetmodel.c
lib/gtksheet/gsheetmodel.h
lib/gtksheet/gtksheet.c
src/ui/gui/psppire-data-store.c
src/ui/gui/psppire-var-store.c

index 23aca590dccef5680ffcf741b22263f6b3a4438a..e200b300fa3f38adb60599f4cc840cc97dc22d43 100644 (file)
@@ -415,28 +415,6 @@ g_sheet_model_get_justification (const GSheetModel *model,
                                                               row, column);
 }
 
-/**
- * g_sheet_model_get_cell_border:
- * @sheet_model: A #GSheetModel
- * @row: The row
- * @column: The column
- *
- * Returns the cell border of the cell at @row, @column
- * Returns: the cell border, or NULL on error.
- **/
-const GtkSheetCellBorder *
-g_sheet_model_get_cell_border (const GSheetModel *model,
-                                glong row, glong column)
-{
-  g_return_val_if_fail (G_IS_SHEET_MODEL (model), NULL);
-  if ( ! G_SHEET_MODEL_GET_IFACE (model)->get_cell_border)
-    return NULL;
-
-  return G_SHEET_MODEL_GET_IFACE (model)->get_cell_border (model,
-                                                          row, column);
-}
-
-
 
 /**
  * g_sheet_model_get_column_count:
index cd7f1d33596814fe9e8ec261eea1d5ef9afef156..6a54d7e85ab25a72abf8815548e5bec4c9bb910b 100644 (file)
@@ -117,11 +117,6 @@ struct _GSheetModelIface
   const GtkJustification *  (* get_justification) (const GSheetModel *sheet_model,
                                                   glong row, glong column);
 
-  const GtkSheetCellBorder *  (* get_cell_border) (const GSheetModel *sheet_model,
-                                                  glong row, glong column);
-
-
-
   /* column related metadata */
 
   gchar * (*get_column_title) (const GSheetModel *, gint col);
index 5641776df30c3e8cb6a83ee38677affdc6f48e51..c638c9e7d1dbf96c6161c66ebf70bd754d3e6475 100644 (file)
@@ -5213,7 +5213,6 @@ gtk_sheet_get_attributes (const GtkSheet *sheet, gint row, gint col,
 {
   GdkColor *fg, *bg;
   const GtkJustification *j ;
-  const GtkSheetCellBorder *border ;
   GdkColormap *colormap;
 
   g_return_val_if_fail (sheet != NULL, FALSE);
@@ -5255,10 +5254,6 @@ gtk_sheet_get_attributes (const GtkSheet *sheet, gint row, gint col,
   if (j)
     attr->justification = *j;
 
-  border = g_sheet_model_get_cell_border (sheet->model, row, col);
-
-  if ( border ) attr->border = *border;
-
   return TRUE;
 }
 
index ce7b2518fbcd9ac3f6d5a4d6ad453f738c3236a7..2059d75ad716e42439a616f671f9b3701d155960 100644 (file)
@@ -275,7 +275,6 @@ psppire_data_store_sheet_model_init (GSheetModelIface *iface)
   iface->is_editable = NULL;
   iface->get_foreground = NULL;
   iface->get_background = NULL;
-  iface->get_cell_border = NULL;
   iface->get_column_count = psppire_data_store_get_var_count;
   iface->get_row_count = psppire_data_store_get_case_count_wrapper;
 
index 083bffad9e8be57a5a087ddbe973396c9a495a1c..19b50028a68566079f0eae03dc5fb6eef9814797 100644 (file)
@@ -295,7 +295,6 @@ psppire_var_store_sheet_model_init (GSheetModelIface *iface)
   iface->is_editable = psppire_var_store_is_editable;
   iface->get_foreground = psppire_var_store_get_foreground;
   iface->get_background = NULL;
-  iface->get_cell_border = NULL;
   iface->get_justification = NULL;
 
   iface->get_column_title = get_column_title;