aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-12-31 03:14:30 +0000
committerGuy Harris <guy@alum.mit.edu>2011-12-31 03:14:30 +0000
commit9f46f8b39e23b4c6cb8ab63c33c3202dcc95532d (patch)
tree27bb089cd962f26a339f11a4192125b38ec2d0fa /gtk
parent110aea3a5e3298546ae9a37e20617661a78d299f (diff)
Leave more word-wrapping to the toolkit.
svn path=/trunk/; revision=40350
Diffstat (limited to 'gtk')
-rw-r--r--gtk/main_welcome.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/gtk/main_welcome.c b/gtk/main_welcome.c
index e632ef261d..a2814db757 100644
--- a/gtk/main_welcome.c
+++ b/gtk/main_welcome.c
@@ -1264,8 +1264,9 @@ welcome_new(void)
if (if_list == NULL && err != NO_INTERFACES_FOUND) {
g_free(err_str);
if (err == CANT_GET_INTERFACE_LIST) {
- label_text = g_strdup("No interface can be used for capturing in\n"
- "this system with the current configuration.\n\n"
+ label_text = g_strdup("No interface can be used for capturing in "
+ "this system with the current configuration."
+ "\n"
"See Capture Help below for details.");
} else {
label_text = g_strdup("WinPcap doesn't appear to be installed. "
@@ -1299,8 +1300,9 @@ welcome_new(void)
"WinPcap.");
}
} else {
- label_text = g_strdup("No interface can be used for capturing in\n"
- "this system with the current configuration.\n\n"
+ label_text = g_strdup("No interface can be used for capturing in "
+ "this system with the current configuration."
+ "\n"
"See Capture Help below for details.");
}
w = gtk_label_new(label_text);