summaryrefslogtreecommitdiffstats
path: root/src/verbs.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/verbs.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/verbs.cpp')
-rw-r--r--src/verbs.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index e96eca2ce..53650a262 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -784,9 +784,6 @@ FileVerb::perform(SPAction *action, void *data, void */*pdata*/)
case SP_VERB_FILE_VACUUM:
sp_file_vacuum();
break;
- case SP_VERB_FILE_PRINT_DIRECT:
- sp_file_print_direct(*parent);
- break;
case SP_VERB_FILE_PRINT_PREVIEW:
sp_file_print_preview(NULL, NULL);
break;
@@ -2136,8 +2133,6 @@ Verb *Verb::_base_verbs[] = {
// TRANSLATORS: "Vacuum Defs" means "Clean up defs" (so as to remove unused definitions)
new FileVerb(SP_VERB_FILE_VACUUM, "FileVacuum", N_("Vac_uum Defs"), N_("Remove unused definitions (such as gradients or clipping paths) from the &lt;defs&gt; of the document"),
"file_vacuum" ),
- new FileVerb(SP_VERB_FILE_PRINT_DIRECT, "FilePrintDirect", N_("Print _Direct"),
- N_("Print directly without prompting to a file or pipe"), NULL ),
new FileVerb(SP_VERB_FILE_PRINT_PREVIEW, "FilePrintPreview", N_("Print Previe_w"),
N_("Preview document printout"), GTK_STOCK_PRINT_PREVIEW ),
new FileVerb(SP_VERB_FILE_IMPORT, "FileImport", N_("_Import..."),