diff options
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed-dialog.c | 2 | ||||
-rw-r--r-- | embed/ephy-embed-persist.c | 18 | ||||
-rw-r--r-- | embed/ephy-history.c | 2 | ||||
-rw-r--r-- | embed/mozilla/mozilla-download.cpp | 2 |
4 files changed, 12 insertions, 12 deletions
diff --git a/embed/ephy-embed-dialog.c b/embed/ephy-embed-dialog.c index 55b909ced..3677f891c 100644 --- a/embed/ephy-embed-dialog.c +++ b/embed/ephy-embed-dialog.c @@ -99,7 +99,7 @@ ephy_embed_dialog_class_init (EphyEmbedDialogClass *klass) "Embed", "The dialog's embed", G_TYPE_OBJECT, - G_PARAM_READWRITE)); + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); g_type_class_add_private (object_class, sizeof(EphyEmbedDialogPrivate)); } diff --git a/embed/ephy-embed-persist.c b/embed/ephy-embed-persist.c index 3297438f1..245f7008b 100644 --- a/embed/ephy-embed-persist.c +++ b/embed/ephy-embed-persist.c @@ -573,7 +573,7 @@ ephy_embed_persist_class_init (EphyEmbedPersistClass *klass) "Destination", "Destination file path", NULL, - G_PARAM_READWRITE)); + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); g_object_class_install_property (object_class, PROP_EMBED, @@ -581,7 +581,7 @@ ephy_embed_persist_class_init (EphyEmbedPersistClass *klass) "Embed", "The embed containing the document", G_TYPE_OBJECT, - G_PARAM_READWRITE | + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_CONSTRUCT_ONLY)); g_object_class_install_property (object_class, @@ -590,7 +590,7 @@ ephy_embed_persist_class_init (EphyEmbedPersistClass *klass) "Filechooser title", "Title to use if showing filechooser", NULL, - G_PARAM_READWRITE)); + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); g_object_class_install_property (object_class, PROP_FILECHOOSER_PARENT, @@ -598,7 +598,7 @@ ephy_embed_persist_class_init (EphyEmbedPersistClass *klass) "Filechooser parent", "The parent window for the filechooser", GTK_TYPE_WINDOW, - G_PARAM_READWRITE)); + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); g_object_class_install_property (object_class, PROP_FLAGS, @@ -607,7 +607,7 @@ ephy_embed_persist_class_init (EphyEmbedPersistClass *klass) "Flags", EPHY_TYPE_EMBED_PERSIST_FLAGS, 0, - G_PARAM_READWRITE)); + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); g_object_class_install_property (object_class, PROP_MAX_SIZE, @@ -617,7 +617,7 @@ ephy_embed_persist_class_init (EphyEmbedPersistClass *klass) -1, G_MAXINT64, -1, - G_PARAM_READWRITE)); + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); g_object_class_install_property (object_class, PROP_PERSISTKEY, @@ -625,7 +625,7 @@ ephy_embed_persist_class_init (EphyEmbedPersistClass *klass) "persist key", "Path persistence gconf key", NULL, - G_PARAM_READWRITE)); + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); g_object_class_install_property (object_class, PROP_SOURCE, @@ -633,7 +633,7 @@ ephy_embed_persist_class_init (EphyEmbedPersistClass *klass) "Source", "Url of the document to save", NULL, - G_PARAM_READWRITE)); + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); g_object_class_install_property (object_class, PROP_USER_TIME, @@ -643,7 +643,7 @@ ephy_embed_persist_class_init (EphyEmbedPersistClass *klass) 0, G_MAXUINT, 0, - G_PARAM_READWRITE)); + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); g_type_class_add_private (object_class, sizeof(EphyEmbedPersistPrivate)); } diff --git a/embed/ephy-history.c b/embed/ephy-history.c index de8109128..ad02c1655 100644 --- a/embed/ephy-history.c +++ b/embed/ephy-history.c @@ -186,7 +186,7 @@ ephy_history_class_init (EphyHistoryClass *klass) "Enabled", "Enabled", TRUE, - G_PARAM_READWRITE)); + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); signals[ADD_PAGE] = g_signal_new ("add_page", diff --git a/embed/mozilla/mozilla-download.cpp b/embed/mozilla/mozilla-download.cpp index 5a412e086..75225c3a6 100644 --- a/embed/mozilla/mozilla-download.cpp +++ b/embed/mozilla/mozilla-download.cpp @@ -301,7 +301,7 @@ mozilla_download_class_init (MozillaDownloadClass *klass) "Mozilla Download", "Mozilla Download", (GParamFlags) - (G_PARAM_READWRITE | + (G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_CONSTRUCT_ONLY))); } |