[glib/wip/gapplication] Don't use gboolean in bitfields



commit dbcd901a3811163d4dfab87f29c001191a55cad0
Author: Matthias Clasen <mclasen redhat com>
Date:   Sat Jun 5 01:54:16 2010 -0400

    Don't use gboolean in bitfields

 gio/gapplication.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gio/gapplication.c b/gio/gapplication.c
index eb2d1ef..60c275b 100644
--- a/gio/gapplication.c
+++ b/gio/gapplication.c
@@ -170,8 +170,8 @@ struct _GApplicationPrivate
   GHashTable *actions; /* name -> GApplicationAction */
   GMainLoop *mainloop;
 
-  gboolean default_quit : 1;
-  gboolean is_remote : 1;
+  guint default_quit : 1;
+  guint is_remote    : 1;
 
   guint actions_changed_id;
 



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