[libgda] Remove trailing comma in enum.
- From: Murray Cumming <murrayc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgda] Remove trailing comma in enum.
- Date: Mon, 18 Oct 2010 08:42:17 +0000 (UTC)
commit 2721db1e9640b92acecb0c3a3bb0fcc3204c2bf1
Author: Murray Cumming <murrayc murrayc com>
Date: Mon Oct 18 10:42:07 2010 +0200
Remove trailing comma in enum.
libgda-ui/gdaui-data-store.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/libgda-ui/gdaui-data-store.h b/libgda-ui/gdaui-data-store.h
index 47184a3..52d6f19 100644
--- a/libgda-ui/gdaui-data-store.h
+++ b/libgda-ui/gdaui-data-store.h
@@ -41,7 +41,7 @@ enum {
DATA_STORE_COL_MODEL_POINTER = -3, /* pointer to the GdaDataModel */
DATA_STORE_COL_MODEL_ROW = -4, /* row number in the GdaDataModel, or -1 for new rows */
DATA_STORE_COL_MODIFIED = -5, /* TRUE if row has been modified */
- DATA_STORE_COL_TO_DELETE = -6, /* TRUE if row is marked to be deleted */
+ DATA_STORE_COL_TO_DELETE = -6 /* TRUE if row is marked to be deleted */
};
/* struct for the object's data */
@@ -63,7 +63,7 @@ GType gdaui_data_store_get_type (void) G_GNUC_CONST;
GtkTreeModel *gdaui_data_store_new (GdaDataModel *model);
GdaDataProxy *gdaui_data_store_get_proxy (GdauiDataStore *store);
-gint gdaui_data_store_get_row_from_iter (GdauiDataStore *store, GtkTreeIter *iter);
+gint gdaui_data_store_get_row_from_iter (GdauiDataStore *store, GtkTreeIter *iter);
gboolean gdaui_data_store_get_iter_from_values (GdauiDataStore *store, GtkTreeIter *iter,
GSList *values, gint *cols_index);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]