summaryrefslogtreecommitdiffstats
path: root/src/home-button.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/home-button.c')
-rw-r--r--src/home-button.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/home-button.c b/src/home-button.c
index ee46497..3a0a0ab 100644
--- a/src/home-button.c
+++ b/src/home-button.c
@@ -73,7 +73,7 @@ set_web_view(MqHomeButton *home_button, MqWebView *web_view)
static void
get_property(GObject *object, guint property_id, GValue *value,
- GParamSpec *pspec)
+ GParamSpec *param_spec)
{
switch (property_id) {
case PROP_CONFIG:
@@ -84,14 +84,14 @@ get_property(GObject *object, guint property_id, GValue *value,
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id,
- pspec);
+ param_spec);
break;
}
}
static void
set_property(GObject *object, guint property_id, const GValue *value,
- GParamSpec *pspec)
+ GParamSpec *param_spec)
{
MqHomeButton *home_button;
@@ -106,7 +106,7 @@ set_property(GObject *object, guint property_id, const GValue *value,
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id,
- pspec);
+ param_spec);
break;
}
}