diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-08-06 06:05:32 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-08-06 06:05:32 +0800 |
commit | dcbd16ef9dd0b77b31005ee34a3ff2ac34f497f6 (patch) | |
tree | 165cbdd63c3f80193b7bdc8a7c6f7f5287d803a4 /embed | |
parent | 0cf955ad33aa0a64f0a85843c04505fefd0d92af (diff) | |
download | gsoc2013-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')
-rw-r--r-- | embed/ephy-embed-shell.c | 4 |
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) |