diff options
author | Sven Neumann <sven@gimp.org> | 2008-08-12 14:37:03 +0000 |
---|---|---|
committer | Sven Neumann <neo@src.gnome.org> | 2008-08-12 14:37:03 +0000 |
commit | b699ac5853f69f617bb1d388c8bb8a8c0d5347e9 (patch) | |
tree | 4b263d2d3867aa3f8ae0eca71d95c89f2f169556 /gtk/gtkdnd-quartz.c | |
parent | 3818f47eb9e41c8d90ea84c4b0fb412b6ef9e371 (diff) | |
download | gtk+-b699ac5853f69f617bb1d388c8bb8a8c0d5347e9.tar.gz |
gtk/gtkaccellabel.c gtk/gtkaction.c gtk/gtkclist.c gtk/gtkcolorbutton.c
2008-08-12 Sven Neumann <sven@gimp.org>
* gtk/gtkaccellabel.c
* gtk/gtkaction.c
* gtk/gtkclist.c
* gtk/gtkcolorbutton.c
* gtk/gtkctree.c
* gtk/gtkdialog.c
* gtk/gtkdnd-quartz.c
* gtk/gtkdnd.c
* gtk/gtkentry.c
* gtk/gtkfilechooserdefault.c
* gtk/gtkfilesel.c
* gtk/gtkgamma.c
* gtk/gtkiconview.c
* gtk/gtkkeyhash.c
* gtk/gtklabel.c
* gtk/gtkmenu.c
* gtk/gtkmenubar.c
* gtk/gtkpaned.c
* gtk/gtkrecentchooserdialog.c
* gtk/gtkrecentchooserutils.c
* gtk/gtkselection.c
* gtk/gtksizegroup.c
* gtk/gtktextbtree.c
* gtk/gtktextbuffer.c
* gtk/gtktextview.c
* gtk/gtktoolbar.c
* gtk/gtktreemodel.c
* gtk/gtkuimanager.c
* gtk/gtkwindow-decorate.c
* gtk/gtkwindow.c: use canonical signal names in some more places
that I missed earlier. Also changed this in the documentation and
comments.
svn path=/trunk/; revision=21094
Diffstat (limited to 'gtk/gtkdnd-quartz.c')
-rw-r--r-- | gtk/gtkdnd-quartz.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkdnd-quartz.c b/gtk/gtkdnd-quartz.c index 2e6aee70a0..8284eea94b 100644 --- a/gtk/gtkdnd-quartz.c +++ b/gtk/gtkdnd-quartz.c @@ -721,7 +721,7 @@ gtk_drag_find_widget (GtkWidget *widget, new_data.toplevel = FALSE; /* need to reference children temporarily in case the - * ::drag_motion/::drag_drop callbacks change the widget heirarchy. + * ::drag-motion/::drag-drop callbacks change the widget hierarchy. */ gtk_container_forall (GTK_CONTAINER (widget), prepend_and_ref_widget, &children); for (tmp_list = children; tmp_list; tmp_list = tmp_list->next) @@ -736,7 +736,7 @@ gtk_drag_find_widget (GtkWidget *widget, } /* If not, and this widget is registered as a drop site, check to - * emit "drag_motion" to check if we are actually in + * emit "drag-motion" to check if we are actually in * a drop site. */ if (!data->found && @@ -747,7 +747,7 @@ gtk_drag_find_widget (GtkWidget *widget, data->x - x_offset - allocation_to_window_x, data->y - y_offset - allocation_to_window_y, data->time); - /* If so, send a "drag_leave" to the last widget */ + /* If so, send a "drag-leave" to the last widget */ if (data->found) { if (data->info->widget && data->info->widget != widget) @@ -1550,7 +1550,7 @@ gtk_drag_source_set_icon_name (GtkWidget *widget, * * Changes the icon for a widget to a given widget. GTK+ * will not destroy the icon, so if you don't want - * it to persist, you should connect to the "drag_end" + * it to persist, you should connect to the "drag-end" * signal and destroy it yourself. **/ void |