[gnome-commander] Replacing obsoleted gdk_draw_pixmap() with gdk_draw_drawable()



commit 824bb85c28ae74a56c4498b9bd4e17e023b5fc7a
Author: Piotr Eljasiak <epiotr src gnome org>
Date:   Mon Jul 25 00:21:46 2011 +0200

    Replacing obsoleted gdk_draw_pixmap() with gdk_draw_drawable()

 src/gnome-cmd-clist.cc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/gnome-cmd-clist.cc b/src/gnome-cmd-clist.cc
index 2dab48a..9abfa72 100644
--- a/src/gnome-cmd-clist.cc
+++ b/src/gnome-cmd-clist.cc
@@ -159,7 +159,7 @@ draw_cell_pixmap (GdkWindow    *window,
     if (y + height > clip_rectangle->y + clip_rectangle->height)
         height = clip_rectangle->y + clip_rectangle->height - y;
 
-    gdk_draw_pixmap (window, fg_gc, pixmap, xsrc, ysrc, x, y, width, height);
+    gdk_draw_drawable (window, fg_gc, pixmap, xsrc, ysrc, x, y, width, height);
     gdk_gc_set_clip_origin (fg_gc, 0, 0);
     if (mask)
         gdk_gc_set_clip_mask (fg_gc, NULL);



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