diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2006-02-08 19:51:32 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2006-02-08 19:51:32 +0800 |
commit | f6e0e26a6febd0c934a166437bb344f2dbb735a9 (patch) | |
tree | e0020bed35ced9e71df75bc9c015f844c4645707 /mail/em-folder-view.h | |
parent | ea9e711fe9b31a61fa9ace5dd5d84740d216f182 (diff) | |
download | gsoc2013-evolution-f6e0e26a6febd0c934a166437bb344f2dbb735a9.tar.gz gsoc2013-evolution-f6e0e26a6febd0c934a166437bb344f2dbb735a9.tar.zst gsoc2013-evolution-f6e0e26a6febd0c934a166437bb344f2dbb735a9.zip |
s/int/guint/g for 1-bit bitfield. Remove cruft use guint for 1-bit
2006-01-09 Kjartan Maraas <kmaraas@gnome.org>
* em-account-editor.h: s/int/guint/g for 1-bit bitfield.
* em-composer-utils.c: (em_utils_redirect_message): Remove cruft
* em-folder-tree.c: (emft_drop_target): use guint for 1-bit bitfield
and rename a variable with a name clash.
* em-folder-utils.c: (em_folder_utils_rename_folder): Rename var to
avoid name clashes.
* em-folder-view.c: guint for 1-bit bitfields.
* em-folder-view.h: Same as above.
* em-format-html-print.h: Again.
* em-format-html.c: (efh_text_html), (efh_multipart_related): Add comments
* em-format.c: (emf_multipart_alternative): Add comment about using var that
is passed in rather than a local variable.
* em-inline-filter.c: (emif_scan): Remove unused var. Mark code static.
* em-mailer-prefs.h: guint for 1-bit bitfields.
* em-migrate.c: (em_migrate_folder): mark a struct static. remove unused var
* em-subscribe-editor.c: guint for 1-bit bitfield
* em-utils.c: remove unused function
* em-vfolder-rule.c: mark array static
* importers/mail-importer.c: (decode_status): Remove unused code. Use guint
for 1-bit bitfield.
* mail-autofilter.c: (rule_from_message): rename a variable
* mail-component.c: guint for 1-bit bitfield
* mail-folder-cache.c: (update_1folder): remove unused code
* mail-mt.c: mark some structs static
* message-list.c: (message_list_select_uid), (ml_value_to_string),
(ml_tree_value_at), (find_next_undeleted), (build_tree),
(build_flat): Remove unused code and fix some format specifiers.
svn path=/trunk/; revision=31448
Diffstat (limited to 'mail/em-folder-view.h')
-rw-r--r-- | mail/em-folder-view.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/em-folder-view.h b/mail/em-folder-view.h index bb0471f444..87dff43634 100644 --- a/mail/em-folder-view.h +++ b/mail/em-folder-view.h @@ -90,18 +90,18 @@ struct _EMFolderView { TODO: should this be on class? */ int mark_seen_timeout; /* local copy of gconf stuff */ - int mark_seen:1; - int 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? */ + guint mark_seen:1; + guint preview_active:1; /* is preview being used */ + guint statusbar_active:1; /* should we manage the statusbar messages ourselves? */ + guint hide_deleted:1; + guint list_active:1; /* we actually showing the list? */ }; struct _EMFolderViewClass { GtkVBoxClass parent_class; /* behaviour definition */ - int update_message_style:1; + guint update_message_style:1; /* if used as a control, used to activate/deactivate custom menu's */ void (*activate)(EMFolderView *, struct _BonoboUIComponent *uic, int state); |