From c5e3ff16cb881af969cc55dbd27da9d4507aec7e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 6 Oct 2009 23:58:29 +0000 Subject: Fix some compiler warnings. git-svn-id: svn://localhost/ardour2/branches/3.0@5746 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/clearlooks-newer/clearlooks_draw_glossy.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'libs/clearlooks-newer/clearlooks_draw_glossy.c') diff --git a/libs/clearlooks-newer/clearlooks_draw_glossy.c b/libs/clearlooks-newer/clearlooks_draw_glossy.c index 8a5921efc2..400851dfa1 100644 --- a/libs/clearlooks-newer/clearlooks_draw_glossy.c +++ b/libs/clearlooks-newer/clearlooks_draw_glossy.c @@ -33,6 +33,9 @@ #include +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif static void clearlooks_draw_glossy_gradient (cairo_t *cr, @@ -292,12 +295,13 @@ clearlooks_glossy_draw_button (cairo_t *cr, } /* if (!(params->enable_glow && !params->active && !params->disabled)) */ - if (!(params->prelight && params->enable_glow && !params->active)) + if (!(params->prelight && params->enable_glow && !params->active)) { if (!(params->disabled)) params->style_functions->draw_inset (cr, ¶ms->parentbg, 0, 0, width-1, height-1, params->radius+1, params->corners); else /*Draw a lighter inset */ clearlooks_glossy_draw_light_inset (cr, ¶ms->parentbg, 0, 0, width-1, height-1, params->radius+1, params->corners); + } cairo_translate (cr, -0.5, -0.5); } @@ -1090,6 +1094,10 @@ clearlooks_glossy_draw_toolbar (cairo_t *cr, const ToolbarParameters *toolbar, int x, int y, int width, int height) { + (void) widget; + (void) width; + (void) height; + const CairoColor *fill = &colors->bg[GTK_STATE_NORMAL]; const CairoColor *dark = &colors->shade[3]; CairoColor light; @@ -1230,6 +1238,9 @@ clearlooks_glossy_draw_radiobutton (cairo_t *cr, const CheckboxParameters *checkbox, int x, int y, int width, int height) { + (void) width; + (void) height; + const CairoColor *border; const CairoColor *dot; CairoColor shadow; -- cgit v1.2.3