summaryrefslogtreecommitdiff
path: root/src/trg-model.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2011-12-11 15:06:01 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2011-12-11 15:06:01 +0000
commit0d08a471f9ebfdfadded6c92abc700c706475644 (patch)
tree2c49e445ccca81f5af70244e89a15585757798d6 /src/trg-model.c
parent24195d0013f81933578afa14a44a10e4b75817dd (diff)
run GNU indent everything. not done this for a while because it was producing weird results. seems ok now.
Diffstat (limited to 'src/trg-model.c')
-rw-r--r--src/trg-model.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/trg-model.c b/src/trg-model.c
index e10c974..75c7016 100644
--- a/src/trg-model.c
+++ b/src/trg-model.c
@@ -34,23 +34,23 @@ struct trg_model_remove_removed_foreachfunc_args {
gboolean
trg_model_remove_removed_foreachfunc(GtkTreeModel * model,
- GtkTreePath * path G_GNUC_UNUSED,
- GtkTreeIter * iter, gpointer data)
+ GtkTreePath * path G_GNUC_UNUSED,
+ GtkTreeIter * iter, gpointer data)
{
struct trg_model_remove_removed_foreachfunc_args *args =
- (struct trg_model_remove_removed_foreachfunc_args *) data;
+ (struct trg_model_remove_removed_foreachfunc_args *) data;
gint64 rowSerial;
gtk_tree_model_get(model, iter, args->serial_column, &rowSerial, -1);
if (rowSerial != args->currentSerial)
- args->toRemove =
- g_list_append(args->toRemove, gtk_tree_iter_copy(iter));
+ args->toRemove =
+ g_list_append(args->toRemove, gtk_tree_iter_copy(iter));
return FALSE;
}
guint
trg_model_remove_removed(GtkListStore * model, gint serial_column,
- gint64 currentSerial)
+ gint64 currentSerial)
{
struct trg_model_remove_removed_foreachfunc_args args;
GList *li;
@@ -60,15 +60,15 @@ trg_model_remove_removed(GtkListStore * model, gint serial_column,
args.currentSerial = currentSerial;
args.serial_column = serial_column;
gtk_tree_model_foreach(GTK_TREE_MODEL(model),
- trg_model_remove_removed_foreachfunc, &args);
+ trg_model_remove_removed_foreachfunc, &args);
if (args.toRemove != NULL) {
- for (li = g_list_last(args.toRemove); li != NULL;
- li = g_list_previous(li)) {
- gtk_list_store_remove(model, (GtkTreeIter *) li->data);
- gtk_tree_iter_free((GtkTreeIter *) li->data);
- removed++;
- }
- g_list_free(args.toRemove);
+ for (li = g_list_last(args.toRemove); li != NULL;
+ li = g_list_previous(li)) {
+ gtk_list_store_remove(model, (GtkTreeIter *) li->data);
+ gtk_tree_iter_free((GtkTreeIter *) li->data);
+ removed++;
+ }
+ g_list_free(args.toRemove);
}
return removed;
@@ -83,17 +83,17 @@ struct find_existing_item_foreach_args {
static gboolean
find_existing_item_foreachfunc(GtkTreeModel * model,
- GtkTreePath * path G_GNUC_UNUSED,
- GtkTreeIter * iter, gpointer data)
+ GtkTreePath * path G_GNUC_UNUSED,
+ GtkTreeIter * iter, gpointer data)
{
struct find_existing_item_foreach_args *args =
- (struct find_existing_item_foreach_args *) data;
+ (struct find_existing_item_foreach_args *) data;
gint64 currentId;
gtk_tree_model_get(model, iter, args->search_column, &currentId, -1);
if (currentId == args->id) {
- args->iter = iter;
- return args->found = TRUE;
+ args->iter = iter;
+ return args->found = TRUE;
}
return FALSE;
@@ -101,7 +101,7 @@ find_existing_item_foreachfunc(GtkTreeModel * model,
gboolean
find_existing_model_item(GtkTreeModel * model, gint search_column,
- gint64 id, GtkTreeIter * iter)
+ gint64 id, GtkTreeIter * iter)
{
struct find_existing_item_foreach_args args;
args.id = id;
@@ -109,6 +109,6 @@ find_existing_model_item(GtkTreeModel * model, gint search_column,
args.search_column = search_column;
gtk_tree_model_foreach(model, find_existing_item_foreachfunc, &args);
if (args.found == TRUE)
- *iter = *(args.iter);
+ *iter = *(args.iter);
return args.found;
}