diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-02-08 03:46:31 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-02-08 03:46:31 +0800 |
commit | 6b21e23b69422d176a2405a5f834181e1e106c0e (patch) | |
tree | 9ccd087efde111d230dc54fd33e26f7b57b7452e | |
parent | a56681d65ba99f7f3d56ebe1ac25f11123eb11f4 (diff) | |
download | gsoc2013-epiphany-6b21e23b69422d176a2405a5f834181e1e106c0e.tar gsoc2013-epiphany-6b21e23b69422d176a2405a5f834181e1e106c0e.tar.gz gsoc2013-epiphany-6b21e23b69422d176a2405a5f834181e1e106c0e.tar.bz2 gsoc2013-epiphany-6b21e23b69422d176a2405a5f834181e1e106c0e.tar.lz gsoc2013-epiphany-6b21e23b69422d176a2405a5f834181e1e106c0e.tar.xz gsoc2013-epiphany-6b21e23b69422d176a2405a5f834181e1e106c0e.tar.zst gsoc2013-epiphany-6b21e23b69422d176a2405a5f834181e1e106c0e.zip |
Remove workaround for broken profile now that
2006-02-07 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/mozilla-embed-single.cpp:
Remove workaround for broken profile now that
https://bugzilla.mozilla.org/show_bug.cgi?id=326013
is fixed.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed-single.cpp | 9 |
2 files changed, 11 insertions, 6 deletions
@@ -1,5 +1,13 @@ 2006-02-07 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/mozilla-embed-single.cpp: + + Remove workaround for broken profile now that + https://bugzilla.mozilla.org/show_bug.cgi?id=326013 + is fixed. + +2006-02-07 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-node.c: (ephy_node_new_from_xml): Save tons of g_type_from_name calls. diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index bdbe73c38..85084486a 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -452,9 +452,6 @@ mozilla_init_profile (void) char *profile_path; profile_path = g_build_filename (ephy_dot_dir (), MOZILLA_PROFILE_DIR, -#ifdef HAVE_GECKO_1_9 - "epiphany", -#endif NULL); gtk_moz_embed_set_profile_path (profile_path, MOZILLA_PROFILE_NAME); g_free (profile_path); @@ -726,11 +723,11 @@ impl_init (EphyEmbedSingle *esingle) mozilla_init_profile (); - /* Set mozilla binary path */ - gtk_moz_embed_set_comp_path (MOZILLA_HOME); - #ifdef HAVE_GECKO_1_9 gtk_moz_embed_set_path (MOZILLA_HOME); +#else + /* Set mozilla binary path */ + gtk_moz_embed_set_comp_path (MOZILLA_HOME); #endif #if defined(HAVE_MOZILLA_TOOLKIT) && defined(HAVE_GECKO_1_8) |