summaryrefslogtreecommitdiff
path: root/mate-about/mate-about.c
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2014-04-23 22:02:11 +0200
committerStefano Karapetsas <[email protected]>2014-04-23 22:02:11 +0200
commit3e894dbd0538d1433a0a3be22c7a0388ad9fb8d9 (patch)
tree4dad59c4dbc9dc61b356d19b629dc875619bcd46 /mate-about/mate-about.c
parent018dc694f53f4d87337212cc46fd719ecbc6967e (diff)
downloadmate-desktop-3e894dbd0538d1433a0a3be22c7a0388ad9fb8d9.tar.bz2
mate-desktop-3e894dbd0538d1433a0a3be22c7a0388ad9fb8d9.tar.xz
mate-about: Use MateAboutDialog
Diffstat (limited to 'mate-about/mate-about.c')
-rw-r--r--mate-about/mate-about.c33
1 files changed, 12 insertions, 21 deletions
diff --git a/mate-about/mate-about.c b/mate-about/mate-about.c
index fa25be6..189e1c7 100644
--- a/mate-about/mate-about.c
+++ b/mate-about/mate-about.c
@@ -70,7 +70,7 @@
void mate_about_run(void)
{
- mate_about_dialog = (GtkAboutDialog*) gtk_about_dialog_new();
+ mate_about_dialog = (MateAboutDialog*) mate_about_dialog_new();
gtk_window_set_default_icon_name(desktop_icon);
@@ -78,44 +78,35 @@
if (gtk_icon_theme_has_icon(icon_theme, icon))
{
- gtk_about_dialog_set_logo_icon_name(mate_about_dialog, icon);
+ mate_about_dialog_set_logo_icon_name(mate_about_dialog, icon);
}
else
{
- gtk_about_dialog_set_logo_icon_name(mate_about_dialog, desktop_icon);
+ mate_about_dialog_set_logo_icon_name(mate_about_dialog, desktop_icon);
}
// name
- #if GTK_CHECK_VERSION(3, 0, 0) || GTK_CHECK_VERSION(2, 12, 0)
- gtk_about_dialog_set_program_name(mate_about_dialog, gettext(program_name));
- #else
- gtk_about_dialog_set_name(mate_about_dialog, gettext(program_name));
- #endif
+ mate_about_dialog_set_program_name(mate_about_dialog, gettext(program_name));
// version
- gtk_about_dialog_set_version(mate_about_dialog, version);
+ mate_about_dialog_set_version(mate_about_dialog, version);
// credits and website
- gtk_about_dialog_set_copyright(mate_about_dialog, copyright);
- gtk_about_dialog_set_website(mate_about_dialog, website);
+ mate_about_dialog_set_copyright(mate_about_dialog, copyright);
+ mate_about_dialog_set_website(mate_about_dialog, website);
/**
* This generate a random message.
* The comments index must not be more than comments_count - 1
*/
- gtk_about_dialog_set_comments(mate_about_dialog, gettext(comments_array[g_random_int_range(0, comments_count - 1)]));
+ mate_about_dialog_set_comments(mate_about_dialog, gettext(comments_array[g_random_int_range(0, comments_count - 1)]));
- gtk_about_dialog_set_authors(mate_about_dialog, authors);
- gtk_about_dialog_set_artists(mate_about_dialog, artists);
- gtk_about_dialog_set_documenters(mate_about_dialog, documenters);
+ mate_about_dialog_set_authors(mate_about_dialog, authors);
+ mate_about_dialog_set_artists(mate_about_dialog, artists);
+ mate_about_dialog_set_documenters(mate_about_dialog, documenters);
/* Translators should localize the following string which will be
* displayed in the about box to give credit to the translator(s). */
- gtk_about_dialog_set_translator_credits(mate_about_dialog, _("translator-credits"));
-
- #if GTK_CHECK_VERSION(3, 0, 0)
- gtk_about_dialog_set_license_type(mate_about_dialog, GTK_LICENSE_GPL_3_0);
- gtk_about_dialog_set_wrap_license(mate_about_dialog, TRUE);
- #endif
+ mate_about_dialog_set_translator_credits(mate_about_dialog, _("translator-credits"));
#ifdef USE_UNIQUE
unique_app_watch_window(mate_about_application, (GtkWindow*) mate_about_dialog);