diff options
Diffstat (limited to 'widgets/table/e-table-example-1.c')
-rw-r--r-- | widgets/table/e-table-example-1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/table/e-table-example-1.c b/widgets/table/e-table-example-1.c index 7772a2851b..39d9719b03 100644 --- a/widgets/table/e-table-example-1.c +++ b/widgets/table/e-table-example-1.c @@ -127,14 +127,14 @@ gchar *table_data [ROWS] [COLS]; */ /* This function returns the number of columns in our ETableModel. */ -static int +static gint my_col_count (ETableModel *etc, gpointer data) { return COLS; } /* This function returns the number of rows in our ETableModel. */ -static int +static gint my_row_count (ETableModel *etc, gpointer data) { return ROWS; |