aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/e-table/e-table-item.c
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@src.gnome.org>2000-03-30 09:35:18 +0800
committerMiguel de Icaza <miguel@src.gnome.org>2000-03-30 09:35:18 +0800
commita02608b0784912bebfd13c888cd1f0b32ed3c5e3 (patch)
tree73de4a81330902fb49e6a5fdf82bd7b61ca6a50a /widgets/e-table/e-table-item.c
parent88674ff4013f5b62ecaeaf8021b8f710067b8598 (diff)
downloadgsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar.gz
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar.bz2
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar.lz
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar.xz
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar.zst
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.zip
Fix indentation
svn path=/trunk/; revision=2252
Diffstat (limited to 'widgets/e-table/e-table-item.c')
-rw-r--r--widgets/e-table/e-table-item.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/widgets/e-table/e-table-item.c b/widgets/e-table/e-table-item.c
index 6b467a84c7..2640e2913f 100644
--- a/widgets/e-table/e-table-item.c
+++ b/widgets/e-table/e-table-item.c
@@ -581,7 +581,7 @@ eti_set_arg (GtkObject *o, GtkArg *arg, guint arg_id)
break;
}
eti->needs_redraw = 1;
- gnome_canvas_item_request_update(GNOME_CANVAS_ITEM(eti));
+ gnome_canvas_item_request_update (GNOME_CANVAS_ITEM(eti));
}
static void
@@ -934,25 +934,25 @@ eti_cursor_move (ETableItem *eti, gint row, gint column)
static void
eti_cursor_move_left (ETableItem *eti)
{
- eti_cursor_move(eti, eti->focused_row, eti->focused_col - 1);
+ eti_cursor_move (eti, eti->focused_row, eti->focused_col - 1);
}
static void
eti_cursor_move_right (ETableItem *eti)
{
- eti_cursor_move(eti, eti->focused_row, eti->focused_col + 1);
+ eti_cursor_move (eti, eti->focused_row, eti->focused_col + 1);
}
static void
eti_cursor_move_up (ETableItem *eti)
{
- eti_cursor_move(eti, eti->focused_row - 1, eti->focused_col);
+ eti_cursor_move (eti, eti->focused_row - 1, eti->focused_col);
}
static void
eti_cursor_move_down (ETableItem *eti)
{
- eti_cursor_move(eti, eti->focused_row + 1, eti->focused_col);
+ eti_cursor_move (eti, eti->focused_row + 1, eti->focused_col);
}
static int
@@ -1065,14 +1065,14 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e)
if (eti->focused_col > 0)
eti_cursor_move_left (eti);
else if (eti->focused_row > 0)
- eti_cursor_move(eti, eti->focused_row - 1, eti->cols - 1);
+ eti_cursor_move (eti, eti->focused_row - 1, eti->cols - 1);
else
return_val = FALSE;
} else {
if (eti->focused_col < eti->cols - 1)
eti_cursor_move_right (eti);
else if (eti->focused_row < eti->rows - 1)
- eti_cursor_move(eti, eti->focused_row + 1, 0);
+ eti_cursor_move (eti, eti->focused_row + 1, 0);
else
return_val = FALSE;
}
@@ -1240,7 +1240,7 @@ e_table_item_unfocus (ETableItem *eti)
const int row = eti->focused_row;
eti_request_region_redraw (eti, col, row, col, row, FOCUSED_BORDER);
- while ( eti->selection ) {
+ while (eti->selection){
e_table_item_unselect_row (eti, GPOINTER_TO_INT(eti->selection->data));
}
}