[Telepathy-commits] [telepathy-gabble/master] store MUC state booleans in bit fields

Robert McQueen robert.mcqueen at collabora.co.uk
Tue Aug 19 10:54:02 PDT 2008


20080727000458-418b8-ca579ad0d48756a99804f201d0ce8fe1057f5160.gz
---
 src/muc-channel.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/muc-channel.c b/src/muc-channel.c
index 1cbc7d8..a50d32b 100644
--- a/src/muc-channel.c
+++ b/src/muc-channel.c
@@ -239,12 +239,12 @@ struct _GabbleMucChannelPrivate
 
   TpPropertiesContext *properties_ctx;
 
-  gboolean ready;
+  gboolean ready:1;
 
-  gboolean closed;
-  gboolean dispose_has_run;
+  gboolean closed:1;
+  gboolean dispose_has_run:1;
 
-  gboolean invited;
+  gboolean invited:1;
   gchar *invitation_message;
 
   /* Aggregate all presences when joining the chatroom */
-- 
1.5.6.3




More information about the Telepathy-commits mailing list