diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/Makefile.am | 9 | ||||
-rw-r--r-- | mail/message-list.c | 2 |
3 files changed, 13 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 48ecad7976..e4a54da483 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2000-03-21 bertrand <bertrand@helixcode.com> + + * message-list.c (ml_value_at): display message size + 2000-03-20 Christopher James Lahey <clahey@helixcode.com> * message-list.c: Properly ref & sink the table and header models. diff --git a/mail/Makefile.am b/mail/Makefile.am index d9b015c897..936312eecd 100644 --- a/mail/Makefile.am +++ b/mail/Makefile.am @@ -1,4 +1,4 @@ -bin_PROGRAMS = evolution-mail test-mail +bin_PROGRAMS = evolution-mail test-mail test-sources providerdir = $(libdir)/evolution/camel-providers/$(VERSION) @@ -59,6 +59,13 @@ test_mail_SOURCES = \ test_mail_LDADD = \ $(BONOBO_HTML_GNOME_LIBS) + +test_sources_SOURCES = \ + mail-sources.c + +test_sources_LDADD = \ + $(BONOBO_HTML_GNOME_LIBS) + gnorbadir = $(sysconfdir)/CORBA/servers gnorba_DATA = evolution-mail.gnorba diff --git a/mail/message-list.c b/mail/message-list.c index 09d268ec61..4ca27fb165 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -191,7 +191,7 @@ ml_value_at (ETableModel *etm, int col, int row, void *data) return "dudes@server"; case COL_SIZE: - sprintf (buffer, "%d", 20); + sprintf (buffer, "%d", msg_info.size); return buffer; default: |