diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-07-13 19:20:55 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-07-13 19:20:55 +0200 |
commit | cc28cc0177aee6fc93436443597078e5be374354 (patch) | |
tree | 0b5aef658cbf95033047449d1229bfc1a585bf10 /src/fe-gtk/maingui.c | |
parent | 2e73e515057bddd77d04438bb8cb51c19bb7fa9a (diff) |
Make the About screen and CTCP VERSION consistent and remove the license text option
Diffstat (limited to 'src/fe-gtk/maingui.c')
-rw-r--r-- | src/fe-gtk/maingui.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/fe-gtk/maingui.c b/src/fe-gtk/maingui.c index 1ff59354..62a35746 100644 --- a/src/fe-gtk/maingui.c +++ b/src/fe-gtk/maingui.c @@ -479,21 +479,10 @@ fe_set_title (session *sess) default: def: snprintf (tbuf, sizeof (tbuf), DISPLAY_NAME); - if (strcmp (prefs.gui_license, "")) /* zero means gui_license is empty */ - { - strcat (tbuf, " - "); - strcat (tbuf, prefs.gui_license); - } gtk_window_set_title (GTK_WINDOW (sess->gui->window), tbuf); return; } - if (strcmp (prefs.gui_license, "")) /* zero means gui_license is empty */ - { - strcat (tbuf, " - "); - strcat (tbuf, prefs.gui_license); - } - gtk_window_set_title (GTK_WINDOW (sess->gui->window), tbuf); } |