summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hult <richard@imendio.com>2008-02-15 19:06:49 +0000
committerRichard Hult <rhult@src.gnome.org>2008-02-15 19:06:49 +0000
commitdb38664512282d560456d0d0547d6d7ac30615c6 (patch)
treef64c984ff7b03c238ccb8abe014912dff77954c1
parent741cd0e2ae0664201d8df47c8a9ee1d2b1f0f565 (diff)
downloadgdk-pixbuf-db38664512282d560456d0d0547d6d7ac30615c6.tar.gz
Adapt to the change to use frame instead of bounds when resizing windows.
2008-02-15 Richard Hult <richard@imendio.com> * gdk/quartz/GdkQuartzView.c: Adapt to the change to use frame instead of bounds when resizing windows. svn path=/trunk/; revision=19580
-rw-r--r--ChangeLog5
-rw-r--r--gdk/quartz/GdkQuartzView.c4
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 <richard@imendio.com>
+
+ * gdk/quartz/GdkQuartzView.c: Adapt to the change to use frame
+ instead of bounds when resizing windows.
+
2008-02-15 Matthias Clasen <mclasen@redhat.com>
* 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];
}