summaryrefslogtreecommitdiff
path: root/libs/clearlooks-newer/clearlooks_rc_style.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_rc_style.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_rc_style.c')
-rw-r--r--libs/clearlooks-newer/clearlooks_rc_style.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/libs/clearlooks-newer/clearlooks_rc_style.c b/libs/clearlooks-newer/clearlooks_rc_style.c
index f486453339..c9a30ff6b4 100644
--- a/libs/clearlooks-newer/clearlooks_rc_style.c
+++ b/libs/clearlooks-newer/clearlooks_rc_style.c
@@ -173,6 +173,8 @@ clearlooks_gtk2_rc_parse_boolean (GtkSettings *settings,
GScanner *scanner,
gboolean *retval)
{
+ (void) settings;
+
guint token;
token = g_scanner_get_next_token(scanner);
@@ -196,6 +198,8 @@ clearlooks_gtk2_rc_parse_color(GtkSettings *settings,
GScanner *scanner,
GdkColor *color)
{
+ (void) settings;
+
guint token;
/* Skip 'blah_color' */
@@ -213,6 +217,8 @@ clearlooks_gtk2_rc_parse_double (GtkSettings *settings,
GScanner *scanner,
gdouble *val)
{
+ (void) settings;
+
guint token;
/* Skip 'blah' */
@@ -236,6 +242,8 @@ clearlooks_gtk2_rc_parse_int (GtkSettings *settings,
GScanner *scanner,
guint8 *progressbarstyle)
{
+ (void) settings;
+
guint token;
/* Skip 'sunkenmenubar' */
@@ -259,6 +267,8 @@ clearlooks_gtk2_rc_parse_style (GtkSettings *settings,
GScanner *scanner,
ClearlooksStyles *style)
{
+ (void) settings;
+
guint token;
g_assert (CL_NUM_STYLES == CL_STYLE_GUMMY + 1); /* so that people don't forget ;-) */
@@ -298,6 +308,8 @@ clearlooks_gtk2_rc_parse_dummy (GtkSettings *settings,
GScanner *scanner,
gchar *name)
{
+ (void) settings;
+
guint token;
/* Skip option */
@@ -469,5 +481,7 @@ clearlooks_rc_style_merge (GtkRcStyle *dest,
static GtkStyle *
clearlooks_rc_style_create_style (GtkRcStyle *rc_style)
{
+ (void) rc_style;
+
return GTK_STYLE (g_object_new (CLEARLOOKS_TYPE_STYLE, NULL));
}