diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-31 04:32:08 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-31 07:09:19 +0800 |
commit | ec73f5522ff2d6f8c476f02a9daaff32ef1db069 (patch) | |
tree | 14729b8cbf271405e732b84ca2ca944ceb0815e5 /widgets/misc/e-canvas-utils.h | |
parent | c7e371bc5bc8d7898236ac36e1ea0bc08518b791 (diff) | |
download | gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.gz gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.zst gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'widgets/misc/e-canvas-utils.h')
-rw-r--r-- | widgets/misc/e-canvas-utils.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/widgets/misc/e-canvas-utils.h b/widgets/misc/e-canvas-utils.h index cda34e99b5..8f7600e72d 100644 --- a/widgets/misc/e-canvas-utils.h +++ b/widgets/misc/e-canvas-utils.h @@ -28,27 +28,27 @@ G_BEGIN_DECLS void e_canvas_item_move_absolute (GnomeCanvasItem *item, - double dx, - double dy); + gdouble dx, + gdouble dy); void e_canvas_item_show_area (GnomeCanvasItem *item, - double x1, - double y1, - double x2, - double y2); + gdouble x1, + gdouble y1, + gdouble x2, + gdouble y2); void e_canvas_item_show_area_delayed (GnomeCanvasItem *item, - double x1, - double y1, - double x2, - double y2, + gdouble x1, + gdouble y1, + gdouble x2, + gdouble y2, gint delay); /* Returns TRUE if the area is already shown on the screen (including spacing.) This is equivelent to returning FALSE iff show_area would do anything. */ gboolean e_canvas_item_area_shown (GnomeCanvasItem *item, - double x1, - double y1, - double x2, - double y2); + gdouble x1, + gdouble y1, + gdouble x2, + gdouble y2); G_END_DECLS |