aboutsummaryrefslogtreecommitdiffstats
path: root/libgnomecanvas/gnome-canvas-pixbuf.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-10-15 18:54:34 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-10-30 01:50:01 +0800
commit2e4810aaf79827a1d9acc693b5cfc70f6038ec27 (patch)
treeac1123dfac98eed204bd9080625a1eb818e2dc20 /libgnomecanvas/gnome-canvas-pixbuf.h
parentf284383f6986fe03332296c4114614c0728829d3 (diff)
downloadgsoc2013-evolution-2e4810aaf79827a1d9acc693b5cfc70f6038ec27.tar
gsoc2013-evolution-2e4810aaf79827a1d9acc693b5cfc70f6038ec27.tar.gz
gsoc2013-evolution-2e4810aaf79827a1d9acc693b5cfc70f6038ec27.tar.bz2
gsoc2013-evolution-2e4810aaf79827a1d9acc693b5cfc70f6038ec27.tar.lz
gsoc2013-evolution-2e4810aaf79827a1d9acc693b5cfc70f6038ec27.tar.xz
gsoc2013-evolution-2e4810aaf79827a1d9acc693b5cfc70f6038ec27.tar.zst
gsoc2013-evolution-2e4810aaf79827a1d9acc693b5cfc70f6038ec27.zip
gnome-canvas: Update GnomeCanvasPixbuf for gobject niceties
G_DEFINE_TYPE and private data, here we come!
Diffstat (limited to 'libgnomecanvas/gnome-canvas-pixbuf.h')
-rw-r--r--libgnomecanvas/gnome-canvas-pixbuf.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libgnomecanvas/gnome-canvas-pixbuf.h b/libgnomecanvas/gnome-canvas-pixbuf.h
index f8f4d72ad4..3c4141da72 100644
--- a/libgnomecanvas/gnome-canvas-pixbuf.h
+++ b/libgnomecanvas/gnome-canvas-pixbuf.h
@@ -38,12 +38,13 @@ G_BEGIN_DECLS
typedef struct _GnomeCanvasPixbuf GnomeCanvasPixbuf;
typedef struct _GnomeCanvasPixbufClass GnomeCanvasPixbufClass;
+typedef struct _GnomeCanvasPixbufPrivate GnomeCanvasPixbufPrivate;
struct _GnomeCanvasPixbuf {
GnomeCanvasItem item;
/* Private data */
- gpointer priv;
+ GnomeCanvasPixbufPrivate *priv;
};
struct _GnomeCanvasPixbufClass {