diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-03-05 05:38:40 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-03-05 05:38:40 +0800 |
commit | 6500f641816afdb3aaa7cc27f186500f4c0d7d8b (patch) | |
tree | 5149291be1a315144a9f92c2189752ffe4663feb | |
parent | 77b51962b586f150d827c543d581b278caee0c9f (diff) | |
download | gsoc2013-evolution-6500f641816afdb3aaa7cc27f186500f4c0d7d8b.tar gsoc2013-evolution-6500f641816afdb3aaa7cc27f186500f4c0d7d8b.tar.gz gsoc2013-evolution-6500f641816afdb3aaa7cc27f186500f4c0d7d8b.tar.bz2 gsoc2013-evolution-6500f641816afdb3aaa7cc27f186500f4c0d7d8b.tar.lz gsoc2013-evolution-6500f641816afdb3aaa7cc27f186500f4c0d7d8b.tar.xz gsoc2013-evolution-6500f641816afdb3aaa7cc27f186500f4c0d7d8b.tar.zst gsoc2013-evolution-6500f641816afdb3aaa7cc27f186500f4c0d7d8b.zip |
Use g_int_compare and g_str_compare as we should be instead of g_int_equal
2000-03-04 Christopher James Lahey <clahey@helixcode.com>
* message-list.c: Use g_int_compare and g_str_compare as we should
be instead of g_int_equal and g_str_equal.
svn path=/trunk/; revision=2046
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/message-list.c | 20 |
2 files changed, 15 insertions, 10 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index e2f211ba3a..8be9ee5e94 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-03-04 Christopher James Lahey <clahey@helixcode.com> + + * message-list.c: Use g_int_compare and g_str_compare as we should + be instead of g_int_equal and g_str_equal. + 2000-03-04 bertrand <bertrand@helixcode.com> * test-mail.c (main): replace the bonobo-active/gtk-main diff --git a/mail/message-list.c b/mail/message-list.c index 88c99f735b..ef207ec7f2 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -182,60 +182,60 @@ message_list_init_header (MessageList *message_list) e_table_col_new (COL_ONLINE_STATUS, _("Online status"), COL_ICON_WIDTH, COL_ICON_WIDTH, message_list->render_online_status, - g_int_equal, FALSE); + g_int_compare, FALSE); message_list->table_cols [COL_MESSAGE_STATUS] = e_table_col_new (COL_MESSAGE_STATUS, _("Message status"), COL_ICON_WIDTH, COL_ICON_WIDTH, message_list->render_message_status, - g_int_equal, FALSE); + g_int_compare, FALSE); message_list->table_cols [COL_PRIORITY] = e_table_col_new (COL_PRIORITY, _("Priority"), COL_ICON_WIDTH, COL_ICON_WIDTH, message_list->render_priority, - g_int_equal, FALSE); + g_int_compare, FALSE); message_list->table_cols [COL_ATTACHMENT] = e_table_col_new (COL_ATTACHMENT, _("Attachment"), COL_ICON_WIDTH, COL_ICON_WIDTH, message_list->render_attachment, - g_int_equal, FALSE); + g_int_compare, FALSE); message_list->table_cols [COL_FROM] = e_table_col_new (COL_FROM, _("From"), COL_FROM_WIDTH, COL_FROM_WIDTH_MIN, message_list->render_text, - g_str_equal, TRUE); + g_str_compare, TRUE); message_list->table_cols [COL_SUBJECT] = e_table_col_new (COL_SUBJECT, _("Subject"), COL_SUBJECT_WIDTH, COL_SUBJECT_WIDTH_MIN, message_list->render_text, - g_str_equal, TRUE); + g_str_compare, TRUE); message_list->table_cols [COL_SENT] = e_table_col_new (COL_SENT, _("Sent"), COL_SUBJECT_WIDTH, COL_SENT_WIDTH_MIN, message_list->render_text, - g_str_equal, TRUE); + g_str_compare, TRUE); message_list->table_cols [COL_RECEIVE] = e_table_col_new (COL_SENT, _("Receive"), COL_RECEIVE_WIDTH, COL_RECEIVE_WIDTH_MIN, message_list->render_text, - g_str_equal, TRUE); + g_str_compare, TRUE); message_list->table_cols [COL_TO] = e_table_col_new (COL_TO, _("To"), COL_TO_WIDTH, COL_TO_WIDTH_MIN, message_list->render_text, - g_str_equal, TRUE); + g_str_compare, TRUE); message_list->table_cols [COL_SIZE] = e_table_col_new (COL_SIZE, _("Size"), COL_SIZE_WIDTH, COL_SIZE_WIDTH_MIN, message_list->render_text, - g_str_equal, TRUE); + g_str_compare, TRUE); /* * Dummy init: It setups the headers to match the order in which |