aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-reflow.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-27 23:13:25 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-29 00:13:23 +0800
commitfad4af8a3d4c6f50f7bcceca8d545eb17d6fd056 (patch)
treeae78be371695c3dc18847b87d3f014f985aa3a40 /widgets/misc/e-reflow.h
parent6f5464f34ceec9e5701e3e3e651a40f9e6b3a072 (diff)
downloadgsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.gz
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.bz2
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.lz
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.xz
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.zst
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.zip
Prefer GLib basic types over C types.
Diffstat (limited to 'widgets/misc/e-reflow.h')
-rw-r--r--widgets/misc/e-reflow.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/widgets/misc/e-reflow.h b/widgets/misc/e-reflow.h
index 69f34d0fd9..69527bdf05 100644
--- a/widgets/misc/e-reflow.h
+++ b/widgets/misc/e-reflow.h
@@ -79,12 +79,12 @@ struct _EReflow
guint adjustment_value_changed_id;
guint set_scroll_adjustments_id;
- int *heights;
+ gint *heights;
GnomeCanvasItem **items;
- int count;
- int allocated_count;
+ gint count;
+ gint allocated_count;
- int *columns;
+ gint *columns;
gint column_count; /* Number of columnns */
GnomeCanvasItem *empty_text;
@@ -96,8 +96,8 @@ struct _EReflow
double column_width;
- int incarnate_idle_id;
- int do_adjustment_idle_id;
+ gint incarnate_idle_id;
+ gint do_adjustment_idle_id;
/* These are all for when the column is being dragged. */
gdouble start_x;
@@ -105,9 +105,9 @@ struct _EReflow
double temp_column_width;
double previous_temp_column_width;
- int cursor_row;
+ gint cursor_row;
- int reflow_from_column;
+ gint reflow_from_column;
guint column_drag : 1;
@@ -127,7 +127,7 @@ struct _EReflowClass
{
GnomeCanvasGroupClass parent_class;
- int (*selection_event) (EReflow *reflow, GnomeCanvasItem *item, GdkEvent *event);
+ gint (*selection_event) (EReflow *reflow, GnomeCanvasItem *item, GdkEvent *event);
void (*column_width_changed) (EReflow *reflow, double width);
};