aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2010-02-17 18:30:29 -0500
committerSteven Rostedt <rostedt@goodmis.org>2010-02-17 18:30:29 -0500
commita79e7a9311de8b43f07aa7c92d332ac920b70eda (patch)
tree18da8494a81dbd4ae6125dab2eaa186116faad3f
parentfb1a1277385c14eac9e02613a45aea5f4123cd6b (diff)
kernelshark: Replace confusing "to" with "with" in sync filter menue
The menu "sync graph events to list" and "sync list events to graph" is confusing because the word "to" usually means to destination. But in this case, the "to" points to the source. Replacing "sync graph events with list" makes this less confusing. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--kernel-shark.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel-shark.c b/kernel-shark.c
index d13819d..fc90443 100644
--- a/kernel-shark.c
+++ b/kernel-shark.c
@@ -751,7 +751,7 @@ void kernel_shark(int argc, char **argv)
751 751
752 /* --- Filter - Events Option --- */ 752 /* --- Filter - Events Option --- */
753 753
754 sub_item = gtk_menu_item_new_with_label("sync graph events to list"); 754 sub_item = gtk_menu_item_new_with_label("sync graph events with list");
755 755
756 /* Add them to the menu */ 756 /* Add them to the menu */
757 gtk_menu_shell_append(GTK_MENU_SHELL (menu), sub_item); 757 gtk_menu_shell_append(GTK_MENU_SHELL (menu), sub_item);
@@ -767,7 +767,7 @@ void kernel_shark(int argc, char **argv)
767 767
768 /* --- Filter - Events Option --- */ 768 /* --- Filter - Events Option --- */
769 769
770 sub_item = gtk_menu_item_new_with_label("sync list events to graph"); 770 sub_item = gtk_menu_item_new_with_label("sync list events with graph");
771 771
772 /* Add them to the menu */ 772 /* Add them to the menu */
773 gtk_menu_shell_append(GTK_MENU_SHELL (menu), sub_item); 773 gtk_menu_shell_append(GTK_MENU_SHELL (menu), sub_item);