Change the declaration of flag 'preview_active' from one bit of int to one
2005-10-21 Jeff Cai <jeff.cai@sun.com> * mail/em-folder-view.h : Change the declaration of flag 'preview_active' from one bit of int to one bit of guint because it will be -1 on linux if being declared one bit of int. svn path=/trunk/; revision=30546
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2005-10-21 Jeff Cai <jeff.cai@sun.com>
|
||||
|
||||
* mail/em-folder-view.h : Change the declaration of flag
|
||||
'preview_active' from one bit of int to one bit of guint
|
||||
because it will be -1 on linux if being declared one bit of int.
|
||||
|
||||
2005-10-19 Philip Van Hoof <pvanhoof@gnome.org>
|
||||
composer/e-msg-composer-select-file.c,
|
||||
composer/e-msg-composer.c, composer/e-msg-composer.h,
|
||||
|
||||
@ -91,7 +91,7 @@ struct _EMFolderView {
|
||||
|
||||
int mark_seen_timeout; /* local copy of gconf stuff */
|
||||
int mark_seen:1;
|
||||
int preview_active:1; /* is preview being used */
|
||||
guint preview_active:1; /* is preview being used */
|
||||
int statusbar_active:1; /* should we manage the statusbar messages ourselves? */
|
||||
int hide_deleted:1;
|
||||
int list_active:1; /* we actually showing the list? */
|
||||
|
||||
Reference in New Issue
Block a user