aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/egg/eggstatusicon.c6
-rw-r--r--lib/egg/eggtrayicon.c2
-rw-r--r--lib/widgets/ephy-location-entry.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/egg/eggstatusicon.c b/lib/egg/eggstatusicon.c
index af183c315..a7c6278ec 100644
--- a/lib/egg/eggstatusicon.c
+++ b/lib/egg/eggstatusicon.c
@@ -159,7 +159,7 @@ egg_status_icon_class_init (EggStatusIconClass *klass)
_("Filename"),
_("Filename to load and display"),
NULL,
- G_PARAM_WRITABLE));
+ G_PARAM_WRITABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
g_object_class_install_property (gobject_class,
PROP_STOCK,
@@ -184,7 +184,7 @@ egg_status_icon_class_init (EggStatusIconClass *klass)
_("The representation being used for image data"),
GTK_TYPE_IMAGE_TYPE,
GTK_IMAGE_EMPTY,
- G_PARAM_READABLE));
+ G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
g_object_class_install_property (gobject_class,
PROP_SIZE,
@@ -194,7 +194,7 @@ egg_status_icon_class_init (EggStatusIconClass *klass)
G_MININT,
G_MAXINT,
0,
- G_PARAM_READABLE));
+ G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
g_object_class_install_property (gobject_class,
PROP_BLINKING,
diff --git a/lib/egg/eggtrayicon.c b/lib/egg/eggtrayicon.c
index 0344c702f..eb23d2c5e 100644
--- a/lib/egg/eggtrayicon.c
+++ b/lib/egg/eggtrayicon.c
@@ -121,7 +121,7 @@ egg_tray_icon_class_init (EggTrayIconClass *klass)
_("The orientation of the tray."),
GTK_TYPE_ORIENTATION,
GTK_ORIENTATION_HORIZONTAL,
- G_PARAM_READABLE));
+ G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
}
static void
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c
index e09ef5036..c841f683c 100644
--- a/lib/widgets/ephy-location-entry.c
+++ b/lib/widgets/ephy-location-entry.c
@@ -299,14 +299,14 @@ ephy_location_entry_class_init (EphyLocationEntryClass *klass)
"Secure background colour",
"Background colour to use for secure sites",
GDK_TYPE_COLOR,
- G_PARAM_READABLE));
+ G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
gtk_widget_class_install_style_property (widget_class,
g_param_spec_boxed ("secure-fg-color",
"Secure foreground Colour",
"Foreground colour to use for secure sites",
GDK_TYPE_COLOR,
- G_PARAM_READABLE));
+ G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
g_type_class_add_private (object_class, sizeof (EphyLocationEntryPrivate));
}