diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-09-09 00:52:48 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-09-09 00:52:48 +0800 |
commit | bbb5bf71555a351bce1ab8353ee0d961d5523d65 (patch) | |
tree | 1037edde01f5193285366538089d4a609862f519 /mail/mail-config-gui.c | |
parent | 48c3fcd45d757f8e60e7ed37ca96fd843e690d0b (diff) | |
download | gsoc2013-evolution-bbb5bf71555a351bce1ab8353ee0d961d5523d65.tar gsoc2013-evolution-bbb5bf71555a351bce1ab8353ee0d961d5523d65.tar.gz gsoc2013-evolution-bbb5bf71555a351bce1ab8353ee0d961d5523d65.tar.bz2 gsoc2013-evolution-bbb5bf71555a351bce1ab8353ee0d961d5523d65.tar.lz gsoc2013-evolution-bbb5bf71555a351bce1ab8353ee0d961d5523d65.tar.xz gsoc2013-evolution-bbb5bf71555a351bce1ab8353ee0d961d5523d65.tar.zst gsoc2013-evolution-bbb5bf71555a351bce1ab8353ee0d961d5523d65.zip |
Fixed some warnings.
2000-09-08 Christopher James Lahey <clahey@helixcode.com>
* folder-browser.c, mail-config-gui.c, mail-ops.c: Fixed some
warnings.
* message-list.c: Added base ETableModel functions.
svn path=/trunk/; revision=5268
Diffstat (limited to 'mail/mail-config-gui.c')
-rw-r--r-- | mail/mail-config-gui.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/mail-config-gui.c b/mail/mail-config-gui.c index 1cb972dc6b..70a3f0326b 100644 --- a/mail/mail-config-gui.c +++ b/mail/mail-config-gui.c @@ -184,7 +184,9 @@ static void config_do_query_authtypes (MailDialogServicePage *page, const char * static void html_size_req (GtkWidget *widget, GtkRequisition *requisition); static GtkWidget *html_new (gboolean white); static void put_html (GtkHTML *html, char *text); +#if 0 static void error_dialog (GtkWidget *parent_finder, const char *fmt, ...); +#endif static GdkImlibImage *load_image (const char *name); static void service_page_menuitem_activate (GtkWidget *item, MailDialogServicePage *page); @@ -255,6 +257,7 @@ put_html (GtkHTML *html, char *text) } +#if 0 /* Standard Dialog Helpers */ static void error_dialog (GtkWidget *parent_finder, const char *fmt, ...) @@ -274,7 +277,6 @@ error_dialog (GtkWidget *parent_finder, const char *fmt, ...) g_free (msg); } -#if 0 static void info_dialog (GtkWidget *parent_finder, const char *fmt, ...) { |