diff options
author | Benjamin Otte <otte@redhat.com> | 2010-10-21 07:56:26 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-10-30 01:50:04 +0800 |
commit | 200df519f19c1bf9c2d7596919d542c3856f3020 (patch) | |
tree | 6f90bfa3cc92c8b15b03aa24d8159c4f48fc9426 /libgnomecanvas/gnome-canvas.h | |
parent | b6cc0f11b8607ef713300f384e279d7ffa4f2abb (diff) | |
download | gsoc2013-evolution-200df519f19c1bf9c2d7596919d542c3856f3020.tar.gz gsoc2013-evolution-200df519f19c1bf9c2d7596919d542c3856f3020.tar.zst gsoc2013-evolution-200df519f19c1bf9c2d7596919d542c3856f3020.zip |
gnome-canvas: Remove functions that allocate colors
Cairo doesn't need allocated colors.
Yay, gnome-canvas now compiles with GDK_DISABLE_DEPRECATED.
Diffstat (limited to 'libgnomecanvas/gnome-canvas.h')
-rw-r--r-- | libgnomecanvas/gnome-canvas.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libgnomecanvas/gnome-canvas.h b/libgnomecanvas/gnome-canvas.h index 33fee2a00c..884adbb383 100644 --- a/libgnomecanvas/gnome-canvas.h +++ b/libgnomecanvas/gnome-canvas.h @@ -507,16 +507,6 @@ void gnome_canvas_window_to_world (GnomeCanvas *canvas, void gnome_canvas_world_to_window (GnomeCanvas *canvas, gdouble worldx, gdouble worldy, gdouble *winx, gdouble *winy); -/* Takes a string specification for a color and allocates it into the specified - * GdkColor. If the string is null, then it returns FALSE. Otherwise, it - * returns TRUE. - */ -gint gnome_canvas_get_color (GnomeCanvas *canvas, const gchar *spec, GdkColor *color); - -/* Allocates a color from the RGB value passed into this function. */ -gulong gnome_canvas_get_color_pixel (GnomeCanvas *canvas, - guint rgba); - G_END_DECLS #endif |