aboutsummaryrefslogtreecommitdiffstats
path: root/src/window-commands.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-06-23 17:57:21 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-06-23 17:57:21 +0800
commit6742f4d2c168a13221adb054520efc7390fe88dc (patch)
tree2115bff277ead194716f1a654e6d6019d6f9d79a /src/window-commands.c
parent01b26909a89f11ea190a312ad0100b5254c97651 (diff)
downloadgsoc2013-epiphany-6742f4d2c168a13221adb054520efc7390fe88dc.tar
gsoc2013-epiphany-6742f4d2c168a13221adb054520efc7390fe88dc.tar.gz
gsoc2013-epiphany-6742f4d2c168a13221adb054520efc7390fe88dc.tar.bz2
gsoc2013-epiphany-6742f4d2c168a13221adb054520efc7390fe88dc.tar.lz
gsoc2013-epiphany-6742f4d2c168a13221adb054520efc7390fe88dc.tar.xz
gsoc2013-epiphany-6742f4d2c168a13221adb054520efc7390fe88dc.tar.zst
gsoc2013-epiphany-6742f4d2c168a13221adb054520efc7390fe88dc.zip
Remove some unused headers.
2003-06-23 Marco Pesenti Gritti <marco@it.gnome.org> * embed/mozilla/GlobalHistory.cpp: Remove some unused headers. * embed/mozilla/mozilla-embed.cpp: Dont asser when trying to print blank page. * lib/Makefile.am: * lib/ephy-autocompletion.c: (ephy_autocompletion_get_type): * lib/widgets/ephy-autocompletion-window.c: (ephy_autocompletion_window_get_type): * lib/widgets/ephy-location-entry.c: (ephy_location_entry_get_type): * src/ephy-encoding-menu.c: (ephy_encoding_menu_get_type): Get rid of the gobject macros. * src/ephy-notebook.c: (move_tab), (move_tab_to_another_notebook), (button_release_cb), (update_tabs_visibility), (tabs_visibility_notifier), (ephy_notebook_init), (ephy_notebook_finalize), (ephy_notebook_set_show_tabs): * src/ephy-notebook.h: * src/ephy-tabs-menu.c: * src/ephy-window.c: (ephy_window_finalize), (update_embed_dialogs), (ephy_window_get_find_dialog), (print_dialog_preview_cb), (ephy_window_print): * src/ephy-window.h: * src/ppview-toolbar.c: (toolbar_cmd_ppv_close): * src/window-commands.c: (window_cmd_file_print): Make sure tabs are hidden when going in print preview mode. Make print dialog transient.
Diffstat (limited to 'src/window-commands.c')
-rw-r--r--src/window-commands.c22
1 files changed, 1 insertions, 21 deletions
diff --git a/src/window-commands.c b/src/window-commands.c
index 84294dfc8..74d7779f8 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -66,31 +66,11 @@ window_cmd_edit_find (EggAction *action,
ephy_dialog_show (dialog);
}
-static void
-print_dialog_preview_cb (PrintDialog *dialog,
- EphyWindow *window)
-{
- ephy_window_set_chrome (window, EMBED_CHROME_PPVIEWTOOLBARON);
-}
-
void
window_cmd_file_print (EggAction *action,
EphyWindow *window)
{
- EphyDialog *dialog;
- EphyEmbed *embed;
-
- embed = ephy_window_get_active_embed (window);
- g_return_if_fail (embed != NULL);
-
- dialog = print_dialog_new_with_parent (GTK_WIDGET(window),
- embed, NULL);
- g_signal_connect (G_OBJECT(dialog),
- "preview",
- G_CALLBACK (print_dialog_preview_cb),
- window);
- ephy_dialog_set_modal (dialog, TRUE);
- ephy_dialog_show (dialog);
+ ephy_window_print (window);
}
void