aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed-persist.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-10-28 03:54:57 +0800
committerChristian Persch <chpe@src.gnome.org>2004-10-28 03:54:57 +0800
commit529f8a142ef1b5cf04062216a442c5f492ec12e0 (patch)
tree39703b62f4fc8b29a4c80340f6be9217f760eaa1 /embed/ephy-embed-persist.c
parent9b7fb421b624db43270af92c9742961a07260b90 (diff)
downloadgsoc2013-epiphany-529f8a142ef1b5cf04062216a442c5f492ec12e0.tar
gsoc2013-epiphany-529f8a142ef1b5cf04062216a442c5f492ec12e0.tar.gz
gsoc2013-epiphany-529f8a142ef1b5cf04062216a442c5f492ec12e0.tar.bz2
gsoc2013-epiphany-529f8a142ef1b5cf04062216a442c5f492ec12e0.tar.lz
gsoc2013-epiphany-529f8a142ef1b5cf04062216a442c5f492ec12e0.tar.xz
gsoc2013-epiphany-529f8a142ef1b5cf04062216a442c5f492ec12e0.tar.zst
gsoc2013-epiphany-529f8a142ef1b5cf04062216a442c5f492ec12e0.zip
Private data is 0-initialised, no need to set members to NULL, 0, or
2004-10-27 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-embed-dialog.c: (ephy_embed_dialog_init): * embed/ephy-embed-persist.c: (ephy_embed_persist_init), (ephy_embed_persist_to_string): * embed/ephy-embed-shell.c: (ephy_embed_shell_init): * embed/find-dialog.c: (find_dialog_init): * embed/mozilla/mozilla-embed-persist.cpp: * embed/mozilla/mozilla-embed-single.cpp: * lib/ephy-dialog.c: (ephy_dialog_set_modal), (ephy_dialog_init): * lib/ephy-file-chooser.c: (ephy_file_chooser_init): * lib/ephy-node-db.c: (ephy_node_db_init): * lib/widgets/ephy-node-view.c: (ephy_node_view_init): * lib/widgets/ephy-search-entry.c: (ephy_search_entry_init): * src/bookmarks/ephy-bookmark-action.c: (ephy_bookmark_action_init): * src/bookmarks/ephy-bookmark-properties.c: (ephy_bookmark_properties_init): * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): * src/bookmarks/ephy-favorites-menu.c: (ephy_favorites_menu_init): * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_init): * src/bookmarks/ephy-topics-selector.c: (ephy_topics_selector_init): * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_init): * src/ephy-encoding-menu.c: (ephy_encoding_menu_init): * src/ephy-favicon-action.c: (ephy_favicon_action_init): * src/ephy-location-action.c: (ephy_location_action_init): * src/ephy-notebook.c: (ephy_notebook_init): * src/ephy-session.c: (ephy_session_init): * src/ephy-shell.c: (ephy_shell_init): * src/ephy-tab.c: (ephy_tab_init): * src/ephy-tabs-menu.c: (ephy_tabs_menu_init): * src/ephy-window.c: (ephy_window_init): * src/pdm-dialog.c: (pdm_dialog_init): * src/ppview-toolbar.c: (ppview_toolbar_init): Private data is 0-initialised, no need to set members to NULL, 0, or FALSE.
Diffstat (limited to 'embed/ephy-embed-persist.c')
-rw-r--r--embed/ephy-embed-persist.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/embed/ephy-embed-persist.c b/embed/ephy-embed-persist.c
index aeee7584d..ed9d03df3 100644
--- a/embed/ephy-embed-persist.c
+++ b/embed/ephy-embed-persist.c
@@ -442,13 +442,7 @@ ephy_embed_persist_init (EphyEmbedPersist *persist)
LOG ("EphyEmbedPersist initialising %p", persist)
- persist->priv->dest = NULL;
- persist->priv->source = NULL;
- persist->priv->fc_title = NULL;
- persist->priv->fc_parent = NULL;
- persist->priv->flags = 0;
persist->priv->max_size = -1;
- persist->priv->persist_key = NULL;
}
static void
@@ -638,4 +632,3 @@ ephy_embed_persist_to_string (EphyEmbedPersist *persist)
EphyEmbedPersistClass *klass = EPHY_EMBED_PERSIST_GET_CLASS (persist);
return klass->to_string (persist);
}
-