aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/e-reflow.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-01-31 04:32:08 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-01-31 07:09:19 +0800
commitec73f5522ff2d6f8c476f02a9daaff32ef1db069 (patch)
tree14729b8cbf271405e732b84ca2ca944ceb0815e5 /widgets/text/e-reflow.h
parentc7e371bc5bc8d7898236ac36e1ea0bc08518b791 (diff)
downloadgsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar
gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.gz
gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.bz2
gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.lz
gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.xz
gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.zst
gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'widgets/text/e-reflow.h')
-rw-r--r--widgets/text/e-reflow.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/widgets/text/e-reflow.h b/widgets/text/e-reflow.h
index 1559ad6bc0..d11362bed4 100644
--- a/widgets/text/e-reflow.h
+++ b/widgets/text/e-reflow.h
@@ -36,9 +36,9 @@ G_BEGIN_DECLS
*
* name type read/write description
* --------------------------------------------------------------------------------
- * minimum_width double RW minimum width of the reflow. width >= minimum_width
- * width double R width of the reflow
- * height double RW height of the reflow
+ * minimum_width gdouble RW minimum width of the reflow. width >= minimum_width
+ * width gdouble R width of the reflow
+ * height gdouble RW height of the reflow
*/
#define E_REFLOW_TYPE (e_reflow_get_type ())
@@ -86,11 +86,11 @@ struct _EReflow
GnomeCanvasItem *empty_text;
gchar *empty_message;
- double minimum_width;
- double width;
- double height;
+ gdouble minimum_width;
+ gdouble width;
+ gdouble height;
- double column_width;
+ gdouble column_width;
gint incarnate_idle_id;
gint do_adjustment_idle_id;
@@ -98,8 +98,8 @@ struct _EReflow
/* These are all for when the column is being dragged. */
gdouble start_x;
gint which_column_dragged;
- double temp_column_width;
- double previous_temp_column_width;
+ gdouble temp_column_width;
+ gdouble previous_temp_column_width;
gint cursor_row;
@@ -124,7 +124,7 @@ struct _EReflowClass
GnomeCanvasGroupClass parent_class;
gint (*selection_event) (EReflow *reflow, GnomeCanvasItem *item, GdkEvent *event);
- void (*column_width_changed) (EReflow *reflow, double width);
+ void (*column_width_changed) (EReflow *reflow, gdouble width);
};
/*