GtkThemingEngine: Fix parameters for gtk_theming_engine_lookup_color()

This commit is contained in:
Carlos Garnacho 2010-12-04 15:08:35 +01:00
parent 8c02445bc5
commit 1c87180d5d
2 changed files with 7 additions and 8 deletions

View File

@ -546,17 +546,16 @@ gtk_theming_engine_get_style (GtkThemingEngine *engine,
* gtk_theming_engine_lookup_color:
* @engine: a #GtkThemingEngine
* @color_name: color name to lookup
* @color: (out) (transfer full): Return location for the looked up color
* @color: (out): Return location for the looked up color
*
* Looks up and resolves a color name in the current style's color map.
* The returned color must be freed with gdk_rgba_free().
*
* Returns: %TRUE if @color_name was found and resolved, %FALSE otherwise
**/
gboolean
gtk_theming_engine_lookup_color (GtkThemingEngine *engine,
const gchar *color_name,
GdkRGBA **color)
gtk_theming_engine_lookup_color (GtkThemingEngine *engine,
const gchar *color_name,
GdkRGBA *color)
{
GtkThemingEnginePrivate *priv;

View File

@ -198,9 +198,9 @@ void gtk_theming_engine_get_style_valist (GtkThemingEngine *engine,
void gtk_theming_engine_get_style (GtkThemingEngine *engine,
...);
gboolean gtk_theming_engine_lookup_color (GtkThemingEngine *engine,
const gchar *color_name,
GdkRGBA **color);
gboolean gtk_theming_engine_lookup_color (GtkThemingEngine *engine,
const gchar *color_name,
GdkRGBA *color);
G_CONST_RETURN GtkWidgetPath * gtk_theming_engine_get_path (GtkThemingEngine *engine);