summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislas Marquis <stnsls@gmail.com>2010-06-10 02:17:23 +0200
committerJavier Jardón <jjardon@gnome.org>2010-06-10 02:21:13 +0200
commit09fe6e7d4498fd5c2ab9e593163f59386c13b750 (patch)
tree5cd490db3814b8f6da9ffa79a7b8cdb935a2d413
parente902786017b01cf846bc9d0ebd7605335aaba699 (diff)
downloadgdk-pixbuf-09fe6e7d4498fd5c2ab9e593163f59386c13b750.tar.gz
[docs] GdkPixmap fix: gdk_pixmap_draw() does not exist.
Using gdk_draw_drawable() instead.
-rw-r--r--docs/reference/gdk/tmpl/pixmaps.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/gdk/tmpl/pixmaps.sgml b/docs/reference/gdk/tmpl/pixmaps.sgml
index 333a2b348..8e37034be 100644
--- a/docs/reference/gdk/tmpl/pixmaps.sgml
+++ b/docs/reference/gdk/tmpl/pixmaps.sgml
@@ -8,7 +8,7 @@ Offscreen drawables
<para>
Pixmaps are offscreen drawables. They can be drawn upon with the
standard drawing primitives, then copied to another drawable (such as
-a #GdkWindow) with gdk_pixmap_draw(). The depth of a pixmap
+a #GdkWindow) with gdk_draw_drawable(). The depth of a pixmap
is the number of bits per pixels. Bitmaps are simply pixmaps
with a depth of 1. (That is, they are monochrome bitmaps - each
pixel can be either on or off).