[gtksourceview] Bitfields have to go at the end of the struct.



commit d194ec25dace9e1acb0081d5b5dd62243537e41c
Author: Ignacio Casal Quinteiro <icq gnome org>
Date:   Sun Aug 16 12:13:50 2009 +0200

    Bitfields have to go at the end of the struct.

 gtksourceview/gtksourceview.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gtksourceview/gtksourceview.c b/gtksourceview/gtksourceview.c
index 11c1b0f..107d50b 100644
--- a/gtksourceview/gtksourceview.c
+++ b/gtksourceview/gtksourceview.c
@@ -129,14 +129,14 @@ struct _GtkSourceViewPrivate
 
 	GtkSourceBuffer *source_buffer;
 
-	GdkColor         current_line_color;
-	guint            current_line_color_set : 1;
-
 	GtkSourceGutter *left_gutter;
 	GtkSourceGutter *right_gutter;
 
 	GtkCellRenderer *line_renderer;
 	GtkCellRenderer *marks_renderer;
+	
+	GdkColor         current_line_color;
+	guint            current_line_color_set : 1;
 };
 
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]