diff options
author | David Bordoley <bordoley@msu.edu> | 2003-05-20 03:35:44 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-05-20 03:35:44 +0800 |
commit | 5a4aa1c8bb9ff82dffd8ce0c435720c460fc782c (patch) | |
tree | 2bfc52c6584db0e4ec1fb2fc992af5ef347e0d8a /src/ephy-shell.c | |
parent | cc8f3060b3c57453f2128a573391add2a0bb47d4 (diff) | |
download | gsoc2013-epiphany-5a4aa1c8bb9ff82dffd8ce0c435720c460fc782c.tar gsoc2013-epiphany-5a4aa1c8bb9ff82dffd8ce0c435720c460fc782c.tar.gz gsoc2013-epiphany-5a4aa1c8bb9ff82dffd8ce0c435720c460fc782c.tar.bz2 gsoc2013-epiphany-5a4aa1c8bb9ff82dffd8ce0c435720c460fc782c.tar.lz gsoc2013-epiphany-5a4aa1c8bb9ff82dffd8ce0c435720c460fc782c.tar.xz gsoc2013-epiphany-5a4aa1c8bb9ff82dffd8ce0c435720c460fc782c.tar.zst gsoc2013-epiphany-5a4aa1c8bb9ff82dffd8ce0c435720c460fc782c.zip |
Shortest patch ever!!! Kill the new page pref. Make Seth happy :)
2003-05-19 David Bordoley <bordoley@msu.edu>
* data/epiphany.schemas.in:
* data/glade/prefs-dialog.glade:
* lib/ephy-prefs.h:
* src/ephy-shell.c: (build_homepage_url):
* src/pref-dialog.c: (properties[])
Shortest patch ever!!! Kill the new page pref.
Make Seth happy :)
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r-- | src/ephy-shell.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 373b9711c..6322a04ef 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -66,8 +66,7 @@ struct EphyShellPrivate enum { STARTPAGE_HOME, - STARTPAGE_LAST, - STARTPAGE_BLANK, + STARTPAGE_LAST }; static void @@ -388,7 +387,7 @@ build_homepage_url (EphyShell *gs, } else { - page_type = eel_gconf_get_integer (CONF_GENERAL_NEWPAGE_TYPE); + page_type = STARTPAGE_LAST; } /* return the appropriate page */ |