aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2008-09-02 18:20:36 +0000
committerGuy Harris <guy@alum.mit.edu>2008-09-02 18:20:36 +0000
commit28971d38fc798fec353774c46c043517e2f0f103 (patch)
treeb0349772465daed3e374da1d7b5fa8c5926a8eeb /gtk
parentf3fd97dc39f085193438dd3868dca610ecd99a18 (diff)
Fix typo in #define.
Fix indentation (a tab doesn't necessarily expand to 4 spaces). svn path=/trunk/; revision=26118
Diffstat (limited to 'gtk')
-rw-r--r--gtk/main_welcome.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/main_welcome.c b/gtk/main_welcome.c
index aa0724d918..92d8da18ca 100644
--- a/gtk/main_welcome.c
+++ b/gtk/main_welcome.c
@@ -22,7 +22,7 @@
*/
/* Put version in Welcome screen, can be useful in custom builds.
-#define VERSION_IN_WELOCME_PAGE 1
+#define VERSION_IN_WELCOME_PAGE 1
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
@@ -58,7 +58,7 @@
#include "gtk/stock_icons.h"
#include "gtk/capture_globals.h"
#include "../image/wssplash-dev.xpm"
-#ifdef VERSION_IN_WELOCME_PAGE
+#ifdef VERSION_IN_WELCOME_PAGE
#include "../version_info.h"
#endif
@@ -280,7 +280,7 @@ welcome_header_new(void)
message = g_strdup_printf(
"<span weight=\"bold\" size=\"x-large\" foreground=\"black\">"
"The World's Most Popular Network Protocol Analyzer"
-#ifdef VERSION_IN_WELOCME_PAGE
+#ifdef VERSION_IN_WELCOME_PAGE
"</span>\n<span size=\"large\">"
"Version " VERSION "%s"
"</span>",wireshark_svnversion);
@@ -290,7 +290,7 @@ welcome_header_new(void)
}
w = gtk_label_new(message);
gtk_label_set_markup(GTK_LABEL(w), message);
- g_free(message);
+ g_free(message);
gtk_misc_set_alignment (GTK_MISC(w), 0.0, 0.5);
gtk_box_pack_start(GTK_BOX(item_hb), w, TRUE, TRUE, 5);