aboutsummaryrefslogtreecommitdiffstats
path: root/src/bookmarks
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-11-08 20:56:24 +0800
committerChristian Persch <chpe@src.gnome.org>2005-11-08 20:56:24 +0800
commit120c3497530166c3d0c6ce1e40dd3713b2561b40 (patch)
tree71e799a81525b0d5935ada49da72da8c66a9e46c /src/bookmarks
parent82c9d32820f4746129cfc2a57fee4eed78af5b78 (diff)
downloadgsoc2013-epiphany-120c3497530166c3d0c6ce1e40dd3713b2561b40.tar
gsoc2013-epiphany-120c3497530166c3d0c6ce1e40dd3713b2561b40.tar.gz
gsoc2013-epiphany-120c3497530166c3d0c6ce1e40dd3713b2561b40.tar.bz2
gsoc2013-epiphany-120c3497530166c3d0c6ce1e40dd3713b2561b40.tar.lz
gsoc2013-epiphany-120c3497530166c3d0c6ce1e40dd3713b2561b40.tar.xz
gsoc2013-epiphany-120c3497530166c3d0c6ce1e40dd3713b2561b40.tar.zst
gsoc2013-epiphany-120c3497530166c3d0c6ce1e40dd3713b2561b40.zip
More static strings.
2005-11-08 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-embed-single.c: (ephy_embed_single_iface_init): * lib/egg/eggstatusicon.c: (egg_status_icon_class_init): * lib/egg/eggtrayicon.c: (egg_tray_icon_class_init): * lib/widgets/ephy-location-entry.c: (ephy_location_entry_class_init): * src/bookmarks/ephy-bookmark-action.c: (ephy_bookmark_action_class_init): * src/bookmarks/ephy-topic-action.c: (ephy_topic_action_class_init): * src/ephy-find-toolbar.c: (ephy_find_toolbar_class_init): * src/ephy-fullscreen-popup.c: (ephy_fullscreen_popup_class_init): * src/ephy-location-action.c: (ephy_location_action_class_init): * src/ephy-python-extension.c: (ephy_python_extension_class_init): * src/ephy-session.c: (ephy_session_class_init): * src/ephy-tab.c: (ephy_tab_class_init): * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_class_init): * src/ephy-toolbar.c: (ephy_toolbar_class_init): * src/ppview-toolbar.c: (ppview_toolbar_class_init): More static strings.
Diffstat (limited to 'src/bookmarks')
-rw-r--r--src/bookmarks/ephy-bookmark-action.c8
-rw-r--r--src/bookmarks/ephy-topic-action.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/bookmarks/ephy-bookmark-action.c b/src/bookmarks/ephy-bookmark-action.c
index 91b048184..f5eb5807e 100644
--- a/src/bookmarks/ephy-bookmark-action.c
+++ b/src/bookmarks/ephy-bookmark-action.c
@@ -667,7 +667,7 @@ ephy_bookmark_action_class_init (EphyBookmarkActionClass *class)
"Tooltip",
"Tooltip",
NULL,
- G_PARAM_READABLE));
+ G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
g_object_class_install_property (object_class,
PROP_LOCATION,
@@ -675,21 +675,21 @@ ephy_bookmark_action_class_init (EphyBookmarkActionClass *class)
"Location",
"Location",
NULL,
- G_PARAM_READABLE));
+ G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
g_object_class_install_property (object_class,
PROP_SMART_URL,
g_param_spec_boolean ("smarturl",
"Smart url",
"Smart url",
FALSE,
- G_PARAM_READABLE));
+ G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
g_object_class_install_property (object_class,
PROP_ICON,
g_param_spec_string ("icon",
"Icon",
"Icon",
NULL,
- 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(EphyBookmarkActionPrivate));
}
diff --git a/src/bookmarks/ephy-topic-action.c b/src/bookmarks/ephy-topic-action.c
index 4988e7d20..dd3844af4 100644
--- a/src/bookmarks/ephy-topic-action.c
+++ b/src/bookmarks/ephy-topic-action.c
@@ -470,7 +470,7 @@ ephy_topic_action_class_init (EphyTopicActionClass *class)
"Manager",
"UI Manager",
GTK_TYPE_UI_MANAGER,
- G_PARAM_WRITABLE |
+ G_PARAM_WRITABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB |
G_PARAM_CONSTRUCT_ONLY));
g_type_class_add_private (object_class, sizeof(EphyTopicActionPrivate));