diff options
author | Ryan Doyle <[email protected]> | 2013-11-16 00:43:46 +1100 |
---|---|---|
committer | Ryan Doyle <[email protected]> | 2013-11-16 00:43:46 +1100 |
commit | 47c59747230a1d72f29c5784b069614ae388ed57 (patch) | |
tree | 38e5d5520c2c9b5896e7c0bff9195602b376a2a9 /src/ui | |
parent | cf101a024b8749a1b2109e3a3b49a7a760124d2d (diff) | |
download | marco-47c59747230a1d72f29c5784b069614ae388ed57.tar.bz2 marco-47c59747230a1d72f29c5784b069614ae388ed57.tar.xz |
As of 5804817, the call to generate_pixmap():2353 was changed to pass by
reference. This broke the GTK2 implementation of generate_pixmap().
This commit updates the GTK2 function to work with the changes.
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/frames.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ui/frames.c b/src/ui/frames.c index 7b9a94bc..82bca2ab 100644 --- a/src/ui/frames.c +++ b/src/ui/frames.c @@ -2253,25 +2253,25 @@ generate_pixmap (MetaFrames *frames, static GdkPixmap * generate_pixmap (MetaFrames *frames, MetaUIFrame *frame, - MetaRectangle rect) + MetaRectangle *rect) { GdkRectangle rectangle; GdkRegion *region; GdkPixmap *result; /* do not create a pixmap for nonexisting areas */ - if (rect.width <= 0 || rect.height <= 0) + if (rect->width <= 0 || rect->height <= 0) return NULL; - rectangle.x = rect.x; - rectangle.y = rect.y; - rectangle.width = rect.width; - rectangle.height = rect.height; + rectangle.x = rect->x; + rectangle.y = rect->y; + rectangle.width = rect->width; + rectangle.height = rect->height; result = gdk_pixmap_new (frame->window, - rect.width, rect.height, -1); + rect->width, rect->height, -1); - clear_backing (result, frame->window, rect.x, rect.y); + clear_backing (result, frame->window, rect->x, rect->y); region = gdk_region_rectangle (&rectangle); |