summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2009-06-24 20:59:29 +0200
committerAlexander Larsson <alexl@redhat.com>2009-06-24 20:59:29 +0200
commitcf1c6bc2ed9a2d4471102d41877938573ba2da3e (patch)
tree57ea394a5b3ea1f41719e3ae7fefcdf80e084962
parent955da9fc764468be61266fd94d8f5e9ff0bc60ef (diff)
downloadgtk+-cf1c6bc2ed9a2d4471102d41877938573ba2da3e.tar.gz
Fix typos
-rw-r--r--gdk/gdkwindow.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c
index f7b1f09d4b..b35c1b9a75 100644
--- a/gdk/gdkwindow.c
+++ b/gdk/gdkwindow.c
@@ -2786,7 +2786,7 @@ append_move_region (GdkWindowObject *impl_window,
/* We approach this by taking the new move and pushing it ahead of moves
starting at the end of the list and stopping when its not safe to do so.
- Its not safe to push past a move is either the source of the new move
+ It's not safe to push past a move if either the source of the new move
is in the destination of the old move, or if the destination of the new
move is in the source of the new move, or if the destination of the new
move overlaps the destination of the old move. We simplify this by
@@ -5674,7 +5674,7 @@ gdk_window_raise_internal (GdkWindow *window)
native_children);
else
{
- /* Right order, since native_chilren is bottom-opmost first */
+ /* Right order, since native_children is bottom-topmost first */
for (l = native_children; l != NULL; l = l->next)
GDK_WINDOW_IMPL_GET_IFACE (private->impl)->raise (l->data);
}
@@ -5856,7 +5856,7 @@ gdk_window_lower_internal (GdkWindow *window)
native_children);
else
{
- /* Right order, since native_chilren is bottom-opmost first */
+ /* Right order, since native_children is bottom-topmost first */
for (l = native_children; l != NULL; l = l->next)
GDK_WINDOW_IMPL_GET_IFACE (private->impl)->raise (l->data);
}
@@ -9280,7 +9280,7 @@ _gdk_windowing_got_event (GdkDisplay *display,
(_gdk_display_has_pointer_grab (display, serial) ||
event->crossing.detail == GDK_NOTIFY_INFERIOR))
{
- /* We synthesize all crossing events due to grabs outselves,
+ /* We synthesize all crossing events due to grabs ourselves,
* so we ignore the native ones caused by our native pointer_grab
* calls. Otherwise we would proxy these crossing event and cause
* multiple copies of crossing events for grabs.