From db38664512282d560456d0d0547d6d7ac30615c6 Mon Sep 17 00:00:00 2001 From: Richard Hult Date: Fri, 15 Feb 2008 19:06:49 +0000 Subject: Adapt to the change to use frame instead of bounds when resizing windows. 2008-02-15 Richard Hult * gdk/quartz/GdkQuartzView.c: Adapt to the change to use frame instead of bounds when resizing windows. svn path=/trunk/; revision=19580 --- ChangeLog | 5 +++++ gdk/quartz/GdkQuartzView.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 88b3c4824..1fa970b39 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-02-15 Richard Hult + + * gdk/quartz/GdkQuartzView.c: Adapt to the change to use frame + instead of bounds when resizing windows. + 2008-02-15 Matthias Clasen * gdk/x11/gdkkeys-x11.c: diff --git a/gdk/quartz/GdkQuartzView.c b/gdk/quartz/GdkQuartzView.c index 7395a8cce..511e6d1b9 100644 --- a/gdk/quartz/GdkQuartzView.c +++ b/gdk/quartz/GdkQuartzView.c @@ -165,9 +165,9 @@ } } --(void)setBounds:(NSRect)bounds +-(void)setFrame:(NSRect)frame { - [super setBounds:bounds]; + [super setFrame:frame]; [self updateTrackingRect]; } -- cgit v1.2.1