diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-28 00:05:40 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-28 00:05:40 +0200 |
commit | fe1d958838cce03179870397f372e723881f2c89 (patch) | |
tree | 12a1e7d3d8adb719e08be108e93aa283e38addcf /src/fe-gtk | |
parent | d892b3346eace3e8fa5530c9d710c1ce2c9fe34d (diff) |
More polishing for the About dialog
Diffstat (limited to 'src/fe-gtk')
-rw-r--r-- | src/fe-gtk/about.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-gtk/about.c b/src/fe-gtk/about.c index 020df8ce..c576e900 100644 --- a/src/fe-gtk/about.c +++ b/src/fe-gtk/about.c @@ -122,18 +122,18 @@ menu_about (GtkWidget * wid, gpointer sess) g_get_charset (&locale); (snprintf) (buf, sizeof (buf), "<b>Version</b>: "PACKAGE_VERSION"\n" - "<b>OS</b>: %s\n" "<b>Compiled</b>: "__DATE__"\n" #ifdef WIN32 "<b>Portable Mode</b>: %s\n" "<b>Build Type</b>: x%d\n" #endif + "<b>OS</b>: %s\n" "<b>Charset</b>: %s", - get_cpu_str (), #ifdef WIN32 (portable_mode () ? "Yes" : "No"), get_cpu_arch (), #endif + get_sys_str (0), locale); label_info = gtk_label_new (NULL); |