gboolean patch



While going through old back patches, I noticed that your
gint => gboolean patch was never applied.

(http://bugzilla.gnome.org/show_bug.cgi?id=51041)

It looks mostly correct, but there is a problem with quite
a few occurrences of:

 -  guint          show_text : 1;
-  guint          activity_mode : 1;
+  gboolean      show_text : 1;
+  gboolean      activity_mode : 1;

Which is incorrect, since to hold the values FALSE and TRUE,
a bitfield must be unsigned, and gboolean is signed.

Do you think you'll have the chance to fix this and update
the patch to the latest CVS, or does someone else needs
to take this on?

Thanks,
                                        Owen




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