summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-11-06 15:33:44 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-11-06 15:33:44 +0000
commit2e3656d31afdee6c7fd0848ca45a6012dca92b0b (patch)
treeb980a1aa78de7ce10817c5e52c2e09427cdd656e
parente35859e11804b1dd0adb176e20ca7d4d5979f4c1 (diff)
downloadwireshark-2e3656d31afdee6c7fd0848ca45a6012dca92b0b.tar.gz
Fixed a check button text.
svn path=/trunk/; revision=26709
-rw-r--r--gtk/capture_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/capture_dlg.c b/gtk/capture_dlg.c
index 4e6f53f2c1..abc95b0d70 100644
--- a/gtk/capture_dlg.c
+++ b/gtk/capture_dlg.c
@@ -1065,7 +1065,7 @@ options_remote_cb(GtkWidget *w _U_, gpointer d _U_)
gtk_container_set_border_width(GTK_CONTAINER(capture_vb), 5);
gtk_container_add(GTK_CONTAINER(capture_fr), capture_vb);
- nocap_rpcap_cb = gtk_check_button_new_with_mnemonic("Do not capture own traffic");
+ nocap_rpcap_cb = gtk_check_button_new_with_mnemonic("Do not capture own RPCAP traffic");
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(nocap_rpcap_cb),
global_capture_opts.nocap_rpcap);
gtk_container_add(GTK_CONTAINER(capture_vb), nocap_rpcap_cb);