Code cleanup

This commit is contained in:
Pierre Pronchery 2013-11-30 06:17:56 +01:00
parent 8e74ced44f
commit d4f5e51c5b
3 changed files with 4 additions and 2 deletions

View File

@ -23,3 +23,5 @@ static char const * _authors[] =
static char const * _comments =
N_("e-mail client for the DeforaOS desktop");
static const char _website[] = "http://www.defora.org/";

View File

@ -1102,7 +1102,7 @@ void compose_show_about(Compose * compose, gboolean show)
desktop_about_dialog_set_copyright(dialog, _copyright);
desktop_about_dialog_set_logo_icon_name(dialog, "mailer");
desktop_about_dialog_set_license(dialog, _license);
desktop_about_dialog_set_website(dialog, "http://www.defora.org/");
desktop_about_dialog_set_website(dialog, _website);
gtk_widget_show(dialog);
}

View File

@ -1674,7 +1674,7 @@ void mailer_show_about(Mailer * mailer, gboolean show)
desktop_about_dialog_set_logo_icon_name(dialog, "mailer");
desktop_about_dialog_set_translator_credits(dialog,
_("translator-credits"));
desktop_about_dialog_set_website(dialog, "http://www.defora.org/");
desktop_about_dialog_set_website(dialog, _website);
gtk_widget_show(dialog);
}