aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/conversations_table.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2006-10-17 01:29:55 +0000
committerUlf Lamping <ulf.lamping@web.de>2006-10-17 01:29:55 +0000
commita1b7a22a8ea88fafb16aa87cd7df4554196592fb (patch)
tree5cf2dd68394ea163507828808dd5063aa06b8822 /gtk/conversations_table.c
parentb76aaf82dacfe37f041998ea7a159c55c6cb40f0 (diff)
from Stephen Fisher:
Here is a patch for spelling typos in comments and strings in the gtk/ directories. svn path=/trunk/; revision=19568
Diffstat (limited to 'gtk/conversations_table.c')
-rw-r--r--gtk/conversations_table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/conversations_table.c b/gtk/conversations_table.c
index 29e699ce3c..d07125d864 100644
--- a/gtk/conversations_table.c
+++ b/gtk/conversations_table.c
@@ -653,7 +653,7 @@ ct_show_popup_menu_cb(void *widg _U_, GdkEvent *event, conversations_table *ct)
gint column;
- /* To qoute the "Gdk Event Structures" doc:
+ /* To quote the "Gdk Event Structures" doc:
* "Normally button 1 is the left mouse button, 2 is the middle button, and 3 is the right button" */
if(event->type==GDK_BUTTON_PRESS && bevent->button==3){
/* if this is a right click on one of our columns, select it and popup the context menu */
@@ -1286,7 +1286,7 @@ init_ct_table_page(conversations_table *conversations, GtkWidget *vbox, gboolean
/*copy_bt = gtk_button_new_with_label ("Copy content to clipboard as CSV");*/
copy_bt = BUTTON_NEW_FROM_STOCK(GTK_STOCK_COPY);
gtk_tooltips_set_tip(tooltips, copy_bt,
- "Copy all statistical values of this page to the clipboard in CSV (Comma Seperated Values) format.", NULL);
+ "Copy all statistical values of this page to the clipboard in CSV (Comma Separated Values) format.", NULL);
SIGNAL_CONNECT(copy_bt, "clicked", copy_as_csv_cb,(gpointer *) conversations);
gtk_box_pack_start(GTK_BOX(vbox), copy_bt, FALSE, FALSE, 0);
#endif