summaryrefslogtreecommitdiffstats
path: root/src/file.cpp
diff options
context:
space:
mode:
authorJoel Holdsworth <joel@airwebreathe.org.uk>2007-12-23 00:37:18 +0000
committerjoelholdsworth <joelholdsworth@users.sourceforge.net>2007-12-23 00:37:18 +0000
commit9183dc9c1c63a70c2384bfd0982e748f7732e342 (patch)
treec5ec229ab1ddf1f52fdd62492be71639ebcc6347 /src/file.cpp
parentFixed the parenting of the print dialog so that it cannot fall behind the mai... (diff)
downloadinkscape-9183dc9c1c63a70c2384bfd0982e748f7732e342.tar.gz
inkscape-9183dc9c1c63a70c2384bfd0982e748f7732e342.zip
Removed Win32 only Print Direct verb, which was an exact clone of normal print
(bzr r4279)
Diffstat (limited to 'src/file.cpp')
-rw-r--r--src/file.cpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/file.cpp b/src/file.cpp
index 9b5f39312..355b1c50a 100644
--- a/src/file.cpp
+++ b/src/file.cpp
@@ -1379,23 +1379,9 @@ sp_file_print(Gtk::Window& parentWindow)
{
SPDocument *doc = SP_ACTIVE_DOCUMENT;
if (doc)
- sp_print_document(parentWindow, doc, FALSE);
+ sp_print_document(parentWindow, doc);
}
-
-/**
- * Print the current document, if any. Do not use
- * the machine's print drivers.
- */
-void
-sp_file_print_direct(Gtk::Window& parentWindow)
-{
- SPDocument *doc = SP_ACTIVE_DOCUMENT;
- if (doc)
- sp_print_document(parentWindow, doc, TRUE);
-}
-
-
/**
* Display what the drawing would look like, if
* printed.