aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed-shell.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-08-06 06:05:32 +0800
committerChristian Persch <chpe@src.gnome.org>2006-08-06 06:05:32 +0800
commitdcbd16ef9dd0b77b31005ee34a3ff2ac34f497f6 (patch)
tree165cbdd63c3f80193b7bdc8a7c6f7f5287d803a4 /embed/ephy-embed-shell.c
parent0cf955ad33aa0a64f0a85843c04505fefd0d92af (diff)
downloadgsoc2013-epiphany-dcbd16ef9dd0b77b31005ee34a3ff2ac34f497f6.tar
gsoc2013-epiphany-dcbd16ef9dd0b77b31005ee34a3ff2ac34f497f6.tar.gz
gsoc2013-epiphany-dcbd16ef9dd0b77b31005ee34a3ff2ac34f497f6.tar.bz2
gsoc2013-epiphany-dcbd16ef9dd0b77b31005ee34a3ff2ac34f497f6.tar.lz
gsoc2013-epiphany-dcbd16ef9dd0b77b31005ee34a3ff2ac34f497f6.tar.xz
gsoc2013-epiphany-dcbd16ef9dd0b77b31005ee34a3ff2ac34f497f6.tar.zst
gsoc2013-epiphany-dcbd16ef9dd0b77b31005ee34a3ff2ac34f497f6.zip
Fix the build.
2006-08-05 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-embed-shell.c: (ephy_embed_shell_set_page_setup), (ephy_embed_shell_set_print_settings): Fix the build.
Diffstat (limited to 'embed/ephy-embed-shell.c')
-rw-r--r--embed/ephy-embed-shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c
index 9a40d7c6b..b15b96c23 100644
--- a/embed/ephy-embed-shell.c
+++ b/embed/ephy-embed-shell.c
@@ -417,7 +417,7 @@ ephy_embed_shell_get_page_setup (EphyEmbedShell *shell)
char *path;
path = g_build_filename (ephy_dot_dir (), PAGE_SETUP_FILENAME, NULL);
- priv->page_setup = ephy_print_utils_page_setup_new_from_file (path, &error);
+ priv->page_setup = ephy_print_utils_page_setup_new_from_file (path, NULL);
g_free (path);
if (priv->page_setup == NULL)
@@ -469,7 +469,7 @@ ephy_embed_shell_get_print_settings (EphyEmbedShell *shell)
char *path;
path = g_build_filename (ephy_dot_dir (), PRINT_SETTINGS_FILENAME, NULL);
- priv->print_settings = ephy_print_utils_settings_new_from_file (path, &error);
+ priv->print_settings = ephy_print_utils_settings_new_from_file (path, NULL);
g_free (path);
if (priv->print_settings == NULL)