changeset 384:7e35b6059d79

Tabs
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 27 Dec 2005 10:33:00 +0000
parents e0caab85510e
children 7dc7e7dbbf90
files src/xs_curve.h
diffstat 1 files changed, 16 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/src/xs_curve.h	Sun Nov 27 19:16:04 2005 +0000
+++ b/src/xs_curve.h	Tue Dec 27 10:33:00 2005 +0000
@@ -22,29 +22,29 @@
 
 struct _XSCurve
 {
-  GtkDrawingArea graph;
+	GtkDrawingArea graph;
 
-  gfloat min_x;
-  gfloat max_x;
-  gfloat min_y;
-  gfloat max_y;
-  GdkPixmap *pixmap;
-  gint height;                  /* (cached) graph height in pixels */
-  gint grab_point;              /* point currently grabbed */
-  gint last;
+	gfloat min_x;
+	gfloat max_x;
+	gfloat min_y;
+	gfloat max_y;
+	GdkPixmap *pixmap;
+	gint height;                  /* (cached) graph height in pixels */
+	gint grab_point;              /* point currently grabbed */
+	gint last;
 
-  /* (cached) curve points: */
-  gint num_points;
-  GdkPoint *point;
+	/* (cached) curve points: */
+	gint num_points;
+	GdkPoint *point;
 
-  /* control points: */
-  gint num_ctlpoints;           /* number of control points */
-  gfloat (*ctlpoint)[2];        /* array of control points */
+	/* control points: */
+	gint num_ctlpoints;           /* number of control points */
+	gfloat (*ctlpoint)[2];        /* array of control points */
 };
 
 struct _XSCurveClass
 {
-  GtkDrawingAreaClass parent_class;
+	GtkDrawingAreaClass parent_class;
 };