Matching the about dialog

This commit is contained in:
Pierre Pronchery 2011-03-11 11:54:01 +00:00
parent fb75e65109
commit 230c26e590
2 changed files with 4 additions and 4 deletions

View File

@ -423,9 +423,9 @@ void ghtml_load_url(GtkWidget * widget, char const * url)
GHtml * ghtml;
gchar * p;
const char about[] = "<html>\n<head><title>About " PACKAGE "</title>"
"</head>\n<body>\n<h1>" PACKAGE " " VERSION "</h1>\n"
"<p>Copyright (c) 2011 <a href=\"http://www.defora.org/\">"
"DeforaOS Project</a></p>\n</body>\n</html>";
"</head>\n<body>\n<center>\n<h1>" PACKAGE " " VERSION "</h1>\n"
"<p>Copyright (c) 2011 Pierre Pronchery &lt;khorben@"
"defora.org&gt;</p>\n</center>\n</body>\n</html>";
const char blank[] = "";
ghtml = g_object_get_data(G_OBJECT(widget), "ghtml");

View File

@ -678,7 +678,7 @@ void surfer_about(Surfer * surfer)
desktop_about_dialog_set_authors(surfer->ab_dialog, _authors);
desktop_about_dialog_set_copyright(surfer->ab_dialog, _copyright);
desktop_about_dialog_set_logo_icon_name(surfer->ab_dialog,
"stock_internet");
"web-browser");
desktop_about_dialog_set_license(surfer->ab_dialog, _license);
desktop_about_dialog_set_name(surfer->ab_dialog, PACKAGE);
desktop_about_dialog_set_version(surfer->ab_dialog, VERSION);