diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-01 23:56:17 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-01 23:56:17 +0800 |
commit | 16909b7bf29098f7668ff2a8057e94d79277aa1c (patch) | |
tree | 33dd68d1ac441199e83d80428becb454d740822c | |
parent | b65b796e714a6ac3c7d12431e183d7a0ab8fc1e4 (diff) | |
download | gsoc2013-epiphany-16909b7bf29098f7668ff2a8057e94d79277aa1c.tar gsoc2013-epiphany-16909b7bf29098f7668ff2a8057e94d79277aa1c.tar.gz gsoc2013-epiphany-16909b7bf29098f7668ff2a8057e94d79277aa1c.tar.bz2 gsoc2013-epiphany-16909b7bf29098f7668ff2a8057e94d79277aa1c.tar.lz gsoc2013-epiphany-16909b7bf29098f7668ff2a8057e94d79277aa1c.tar.xz gsoc2013-epiphany-16909b7bf29098f7668ff2a8057e94d79277aa1c.tar.zst gsoc2013-epiphany-16909b7bf29098f7668ff2a8057e94d79277aa1c.zip |
Fix compilation with --enable-nautilus-view. Fixes bug #148995.
2004-08-01 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-nautilus-view.c: (gnv_cmd_file_print):
Fix compilation with --enable-nautilus-view. Fixes bug #148995.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-nautilus-view.c | 9 |
2 files changed, 7 insertions, 8 deletions
@@ -1,5 +1,11 @@ 2004-08-01 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-nautilus-view.c: (gnv_cmd_file_print): + + Fix compilation with --enable-nautilus-view. Fixes bug #148995. + +2004-08-01 Christian Persch <chpe@cvs.gnome.org> + * configure.in: Post-release version bump. diff --git a/src/ephy-nautilus-view.c b/src/ephy-nautilus-view.c index ef8b64a7d..667a12609 100644 --- a/src/ephy-nautilus-view.c +++ b/src/ephy-nautilus-view.c @@ -543,14 +543,7 @@ gnv_cmd_file_print (BonoboUIComponent *uic, EphyNautilusView *view, const char* verbname) { - EphyDialog *dialog; - EphyNautilusViewPrivate *p = view->priv; - - dialog = ephy_print_dialog_new (NULL, p->embed, FALSE); - - ephy_dialog_set_modal (dialog, TRUE); - ephy_dialog_run (dialog); - g_object_unref (dialog); + ephy_embed_print (view->priv->embed); } static void |