summaryrefslogtreecommitdiffstats
path: root/src/uri-entry.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/uri-entry.c
parente55e0fa7f4387add6f211c046aeee5da8433a71a (diff)
downloadmarquee-48c592fa38d2d4e13e201cbb68eeb4c0781326f2.zip
marquee-48c592fa38d2d4e13e201cbb68eeb4c0781326f2.tar.gz
marquee-48c592fa38d2d4e13e201cbb68eeb4c0781326f2.tar.bz2
Standardize spelling of GParamSpec parameter names
Diffstat (limited to 'src/uri-entry.c')
-rw-r--r--src/uri-entry.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/uri-entry.c b/src/uri-entry.c
index a36434c..e91492f 100644
--- a/src/uri-entry.c
+++ b/src/uri-entry.c
@@ -141,7 +141,7 @@ mouse_target_changed_cb(MqWebView G_GNUC_UNUSED *web_view,
}
static void
-load_progress_cb(WebKitWebView *web_view, GParamSpec G_GNUC_UNUSED *paramspec,
+load_progress_cb(WebKitWebView *web_view, GParamSpec G_GNUC_UNUSED *param_spec,
MqUriEntry *uri_entry)
{
/*
@@ -160,7 +160,7 @@ load_progress_cb(WebKitWebView *web_view, GParamSpec G_GNUC_UNUSED *paramspec,
}
static void
-uri_cb(MqWebView *web_view, GParamSpec G_GNUC_UNUSED *paramspec,
+uri_cb(MqWebView *web_view, GParamSpec G_GNUC_UNUSED *param_spec,
MqUriEntry *uri_entry)
{
const gchar *uri;
@@ -207,7 +207,7 @@ set_web_view(MqUriEntry *uri_entry, MqWebView *web_view)
static void
get_property(GObject *object, guint property_id, GValue *value,
- GParamSpec *pspec)
+ GParamSpec *param_spec)
{
switch (property_id) {
case PROP_URI:
@@ -218,14 +218,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)
{
MqUriEntry *uri_entry;
@@ -240,7 +240,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;
}
}