X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fgtksheet%2Fgsheetmodel.h;h=ae5a372bb697e3eba83faebdb7b48f0d33e01d2c;hb=88eb1ede60522d3893dfe1c75cbab2d03f5cb2d5;hp=6d60e032f9fb741b97d389b1ae1f50781b5ff298;hpb=9d179d5ede561c69812b3afbcd9bf58f96e99663;p=pspp-builds.git diff --git a/lib/gtksheet/gsheetmodel.h b/lib/gtksheet/gsheetmodel.h index 6d60e032..ae5a372b 100644 --- a/lib/gtksheet/gsheetmodel.h +++ b/lib/gtksheet/gsheetmodel.h @@ -107,10 +107,10 @@ struct _GSheetModelIface gboolean (* is_visible) (const GSheetModel *sheet_model, glong row, glong column); gboolean (* is_editable) (const GSheetModel *sheet_model, glong row, glong column); - const GdkColor * (* get_foreground) (const GSheetModel *sheet_model, - glong row, glong column); + GdkColor * (* get_foreground) (const GSheetModel *sheet_model, + glong row, glong column); - const GdkColor * (* get_background) (const GSheetModel *sheet_model, + GdkColor * (* get_background) (const GSheetModel *sheet_model, glong row, glong column); const GtkJustification * (* get_justification) (const GSheetModel *sheet_model, @@ -169,10 +169,10 @@ inline gboolean g_sheet_model_is_visible (const GSheetModel *model, glong row, glong column); -inline const GdkColor *g_sheet_model_get_foreground - (const GSheetModel *model, glong row, glong column); +inline GdkColor *g_sheet_model_get_foreground + (const GSheetModel *model, glong row, glong column); -inline const GdkColor *g_sheet_model_get_background +inline GdkColor *g_sheet_model_get_background (const GSheetModel *model, glong row, glong column);