From: Andre Noll Date: Mon, 20 May 2013 20:12:40 +0000 (+0200) Subject: gui: Use version_single_line(). X-Git-Tag: v0.4.13~23^2~2 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=be2f6b93943c955481ad616412ef42e929b31974 gui: Use version_single_line(). No need to reinvent the wheel. --- diff --git a/gui.c b/gui.c index b874d082..4d2c9f72 100644 --- a/gui.c +++ b/gui.c @@ -605,8 +605,8 @@ static void print_welcome(void) { if (loglevel > LL_NOTICE) return; - outputf(COLOR_WELCOME, "Welcome to para_gui " PACKAGE_VERSION - " \"" CODENAME "\". Theme: %s", theme.name); + outputf(COLOR_WELCOME, "Welcome to %s. Theme: %s", + version_single_line("gui"), theme.name); wclrtoeol(bot.win); } @@ -1432,8 +1432,7 @@ static void com_enlarge_top_win(void) static void com_version(void) { - print_in_bar(COLOR_MSG, "para_gui " PACKAGE_VERSION " \"" - CODENAME "\""); + print_in_bar(COLOR_MSG, "%s", version_single_line("gui")); } __noreturn static void com_quit(void)