summaryrefslogtreecommitdiff
path: root/libs/clearlooks-newer/clearlooks_draw_gummy.c
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-10-06 23:58:29 +0000
committerCarl Hetherington <carl@carlh.net>2009-10-06 23:58:29 +0000
commitc5e3ff16cb881af969cc55dbd27da9d4507aec7e (patch)
treeb1f075fa60d7fe60534d97152466d8211f5e8c5d /libs/clearlooks-newer/clearlooks_draw_gummy.c
parentaefcce1c99598cc8c1748940a01e2d8aa55caf85 (diff)
Fix some compiler warnings.
git-svn-id: svn://localhost/ardour2/branches/3.0@5746 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/clearlooks-newer/clearlooks_draw_gummy.c')
-rw-r--r--libs/clearlooks-newer/clearlooks_draw_gummy.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libs/clearlooks-newer/clearlooks_draw_gummy.c b/libs/clearlooks-newer/clearlooks_draw_gummy.c
index e2a990230b..b57cf24fdf 100644
--- a/libs/clearlooks-newer/clearlooks_draw_gummy.c
+++ b/libs/clearlooks-newer/clearlooks_draw_gummy.c
@@ -793,6 +793,8 @@ clearlooks_gummy_draw_separator (cairo_t *cr,
const SeparatorParameters *separator,
int x, int y, int width, int height)
{
+ (void) widget;
+
CairoColor color = colors->shade[3];
CairoColor hilight;
ge_shade_color (&color, 1.3, &hilight);
@@ -1166,6 +1168,8 @@ clearlooks_gummy_draw_toolbar (cairo_t *cr,
const ToolbarParameters *toolbar,
int x, int y, int width, int height)
{
+ (void) widget;
+
const CairoColor *fill = &colors->bg[GTK_STATE_NORMAL];
const CairoColor *dark = &colors->shade[3];
CairoColor light;
@@ -1304,6 +1308,9 @@ clearlooks_gummy_draw_statusbar (cairo_t *cr,
const WidgetParameters *widget,
int x, int y, int width, int height)
{
+ (void) widget;
+ (void) height;
+
const CairoColor *dark = &colors->shade[3];
CairoColor hilight;
@@ -1330,6 +1337,9 @@ clearlooks_gummy_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;