summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/web-view.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/web-view.c b/src/web-view.c
index 2e8bc40..7516202 100644
--- a/src/web-view.c
+++ b/src/web-view.c
@@ -650,11 +650,16 @@ mq_web_view_class_init(MqWebViewClass *klass)
object_class->set_property = set_property;
obj_properties[PROP_TAB] = g_param_spec_pointer(
- "tab", "MqTab", "Parent MqTab instance",
+ "tab",
+ "MqTab",
+ "The parent MqTab instance",
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB);
obj_properties[PROP_REWRITTEN_URI] = g_param_spec_string(
- "rewritten-uri", "URI", "URI to load",
+ "rewritten-uri",
+ "URI",
+ "The current active URI of the Web view, "
+ "with \"mq-about:\" rewritten to \"about:\"",
"",
G_PARAM_READWRITE |
G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB);