gtk+ r21877 - in trunk: . gdk gdk/directfb gdk/x11 gtk gtk/tests tests



Author: matthiasc
Date: Sat Dec 13 05:20:10 2008
New Revision: 21877
URL: http://svn.gnome.org/viewvc/gtk+?rev=21877&view=rev

Log:
Fix  a typo


Modified:
   trunk/ChangeLog
   trunk/gdk/directfb/gdkwindow-directfb.c
   trunk/gdk/gdkwindow.c
   trunk/gdk/x11/gdkwindow-x11.c
   trunk/gtk/gtkmenushell.c
   trunk/gtk/gtkwidget.c
   trunk/gtk/tests/builder.c
   trunk/tests/testdnd.c

Modified: trunk/gdk/directfb/gdkwindow-directfb.c
==============================================================================
--- trunk/gdk/directfb/gdkwindow-directfb.c	(original)
+++ trunk/gdk/directfb/gdkwindow-directfb.c	Sat Dec 13 05:20:10 2008
@@ -660,7 +660,7 @@
 void
 _gdk_windowing_window_destroy_foreign (GdkWindow *window)
 {
-  /* It's somebody else's window, but in our heirarchy,
+  /* It's somebody else's window, but in our hierarchy,
    * so reparent it to the root window, and then send
    * it a delete event, as if we were a WM
    */

Modified: trunk/gdk/gdkwindow.c
==============================================================================
--- trunk/gdk/gdkwindow.c	(original)
+++ trunk/gdk/gdkwindow.c	Sat Dec 13 05:20:10 2008
@@ -508,9 +508,9 @@
 	{
 	  /* Logically, it probably makes more sense to send
 	   * a "destroy yourself" message to the foreign window
-	   * whether or not it's in our heirarchy; but for historical
+	   * whether or not it's in our hierarchy; but for historical
 	   * reasons, we only send "destroy yourself" messages to
-	   * foreign windows in our heirarchy.
+	   * foreign windows in our hierarchy.
 	   */
 	  if (private->parent)
 	    _gdk_windowing_window_destroy_foreign (window);

Modified: trunk/gdk/x11/gdkwindow-x11.c
==============================================================================
--- trunk/gdk/x11/gdkwindow-x11.c	(original)
+++ trunk/gdk/x11/gdkwindow-x11.c	Sat Dec 13 05:20:10 2008
@@ -1170,7 +1170,7 @@
 void
 _gdk_windowing_window_destroy_foreign (GdkWindow *window)
 {
-  /* It's somebody else's window, but in our heirarchy,
+  /* It's somebody else's window, but in our hierarchy,
    * so reparent it to the root window, and then send
    * it a delete event, as if we were a WM
    */

Modified: trunk/gtk/gtkmenushell.c
==============================================================================
--- trunk/gtk/gtkmenushell.c	(original)
+++ trunk/gtk/gtkmenushell.c	Sat Dec 13 05:20:10 2008
@@ -83,7 +83,7 @@
  *
  * There is also is a concept of the current menu and a current
  * menu item. The current menu item is the selected menu item
- * that is furthest down in the heirarchy. (Every active menu_shell
+ * that is furthest down in the hierarchy. (Every active menu_shell
  * does not necessarily contain a selected menu item, but if
  * it does, then menu_shell->parent_menu_shell must also contain
  * a selected menu item. The current menu is the menu that 

Modified: trunk/gtk/gtkwidget.c
==============================================================================
--- trunk/gtk/gtkwidget.c	(original)
+++ trunk/gtk/gtkwidget.c	Sat Dec 13 05:20:10 2008
@@ -6241,8 +6241,7 @@
  *
  * Please note that the semantics of this call will change
  * in the future if used on a widget that has a composited
- * window in its heirarchy (as set by
- * gdk_window_set_composited()).
+ * window in its hierarchy (as set by gdk_window_set_composited()).
  * 
  * Return value: %TRUE if the widget can rely on its alpha
  * channel being drawn correctly.
@@ -6741,7 +6740,7 @@
  * 
  * Checks whether there is a #GdkScreen is associated with
  * this widget. All toplevel widgets have an associated
- * screen, and all widgets added into a heirarchy with a toplevel
+ * screen, and all widgets added into a hierarchy with a toplevel
  * window at the top.
  * 
  * Return value: %TRUE if there is a #GdkScreen associcated
@@ -6787,7 +6786,7 @@
  * 
  * Get the root window where this widget is located. This function can
  * only be called after the widget has been added to a widget
- * heirarchy with #GtkWindow at the top.
+ * hierarchy with #GtkWindow at the top.
  *
  * The root window is useful for such purposes as creating a popup
  * #GdkWindow associated with the window. In general, you should only

Modified: trunk/gtk/tests/builder.c
==============================================================================
--- trunk/gtk/tests/builder.c	(original)
+++ trunk/gtk/tests/builder.c	Sat Dec 13 05:20:10 2008
@@ -2410,7 +2410,7 @@
   g_assert (strcmp (GTK_ACCEL_LABEL (item_accel_label)->accel_string, 
 		    GTK_ACCEL_LABEL (sample_accel_label)->accel_string) == 0);
 
-  /* Check the menu heirarchy worked here  */
+  /* Check the menu hierarchy worked here  */
   g_assert (get_parent_menubar (item));
 
   gtk_widget_destroy (GTK_WIDGET (window));

Modified: trunk/tests/testdnd.c
==============================================================================
--- trunk/tests/testdnd.c	(original)
+++ trunk/tests/testdnd.c	Sat Dec 13 05:20:10 2008
@@ -432,7 +432,7 @@
 }
   
 /* The following is a rather elaborate example demonstrating/testing
- * changing of the window heirarchy during a drag - in this case,
+ * changing of the window hierarchy during a drag - in this case,
  * via a "spring-loaded" popup window.
  */
 static GtkWidget *popup_window = NULL;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]