summaryrefslogtreecommitdiffstats
path: root/src/back-forward-button-box.c
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-13 13:34:26 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-13 13:34:26 (EDT)
commit48c592fa38d2d4e13e201cbb68eeb4c0781326f2 (patch)
treee38efef878728da4c2811e7f859ab1be42e2039b /src/back-forward-button-box.c
parente55e0fa7f4387add6f211c046aeee5da8433a71a (diff)
downloadmarquee-48c592fa38d2d4e13e201cbb68eeb4c0781326f2.zip
marquee-48c592fa38d2d4e13e201cbb68eeb4c0781326f2.tar.gz
marquee-48c592fa38d2d4e13e201cbb68eeb4c0781326f2.tar.bz2
Standardize spelling of GParamSpec parameter names
Diffstat (limited to 'src/back-forward-button-box.c')
-rw-r--r--src/back-forward-button-box.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/back-forward-button-box.c b/src/back-forward-button-box.c
index 1abf353..d95bf41 100644
--- a/src/back-forward-button-box.c
+++ b/src/back-forward-button-box.c
@@ -336,7 +336,7 @@ set_web_view(MqBackForwardButtonBox *back_forward_button_box,
static void
get_property(GObject *object, guint property_id, GValue *value,
- GParamSpec *pspec)
+ GParamSpec *param_spec)
{
MqBackForwardButtonBox *back_forward_button_box;
@@ -349,14 +349,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)
{
MqBackForwardButtonBox *back_forward_button_box;
@@ -369,7 +369,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;
}
}