diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-26 02:25:17 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-26 02:25:17 +0800 |
commit | 06a35575071afe841195199754a27f04a4b03716 (patch) | |
tree | a808cfce7f05e185214b7b5b885d15fd28f79aa8 /shell/evolution-wizard.c | |
parent | 9707f615595f3c969e9a0e6cc3e4a623f1057e4c (diff) | |
download | gsoc2013-evolution-06a35575071afe841195199754a27f04a4b03716.tar gsoc2013-evolution-06a35575071afe841195199754a27f04a4b03716.tar.gz gsoc2013-evolution-06a35575071afe841195199754a27f04a4b03716.tar.bz2 gsoc2013-evolution-06a35575071afe841195199754a27f04a4b03716.tar.lz gsoc2013-evolution-06a35575071afe841195199754a27f04a4b03716.tar.xz gsoc2013-evolution-06a35575071afe841195199754a27f04a4b03716.tar.zst gsoc2013-evolution-06a35575071afe841195199754a27f04a4b03716.zip |
Don't use __FUNCTION__. (evolution_wizard_set_show_finish): Likewise.
* evolution-wizard.c (evolution_wizard_set_buttons_sensitive):
Don't use __FUNCTION__.
(evolution_wizard_set_show_finish): Likewise.
(evolution_wizard_set_page): Likewise.
* e-shell-startup-wizard.c (make_mail_dialog_pages): Do not use
__FUNCTION__ and __LINE__. This breaks the string freeze, but the
old way made Evolution non-compilable with non-GNU compilers.
svn path=/trunk/; revision=14094
Diffstat (limited to 'shell/evolution-wizard.c')
-rw-r--r-- | shell/evolution-wizard.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/evolution-wizard.c b/shell/evolution-wizard.c index 20f576e8e7..291c7ad57a 100644 --- a/shell/evolution-wizard.c +++ b/shell/evolution-wizard.c @@ -301,7 +301,7 @@ evolution_wizard_set_buttons_sensitive (EvolutionWizard *wizard, EVOLUTION_WIZARD_SET_BUTTONS_SENSITIVE, &any, &ev); if (opt_ev == NULL && BONOBO_EX (&ev)) { - g_warning ("ERROR(%s): %s", __FUNCTION__, CORBA_exception_id (&ev)); + g_warning ("ERROR(evolution_wizard_set_buttons_sensitive): %s", CORBA_exception_id (&ev)); } if (opt_ev == NULL) { @@ -336,7 +336,7 @@ evolution_wizard_set_show_finish (EvolutionWizard *wizard, EVOLUTION_WIZARD_SET_SHOW_FINISH, &any, &ev); if (opt_ev == NULL && BONOBO_EX (&ev)) { - g_warning ("ERROR(%s): %s", __FUNCTION__, CORBA_exception_id (&ev)); + g_warning ("ERROR(evolution_wizard_set_show_finish): %s", CORBA_exception_id (&ev)); } if (opt_ev == NULL) { @@ -375,7 +375,7 @@ evolution_wizard_set_page (EvolutionWizard *wizard, &any, &ev); if (opt_ev == NULL && BONOBO_EX (&ev)) { - g_warning ("ERROR(%s): %s", __FUNCTION__, CORBA_exception_id (&ev)); + g_warning ("ERROR(evolution_wizard_set_page): %s", CORBA_exception_id (&ev)); } if (opt_ev == NULL) { |