summaryrefslogtreecommitdiffstats
path: root/svtools
diff options
context:
space:
mode:
authorBryan Quigley <gquigs@gmail.com>2015-12-08 11:51:55 -0500
committerjan iversen <jani@documentfoundation.org>2016-01-05 10:24:51 +0000
commit4feaf73a4da939be741516edd3636d1a3c3fc0e2 (patch)
treeaca0e657b7a1330f2b194abe489ea5ddd23fb676 /svtools
parenttdf#94715 - ensure we remove ourselves from the same event source. (diff)
downloadcore-4feaf73a4da939be741516edd3636d1a3c3fc0e2.tar.gz
core-4feaf73a4da939be741516edd3636d1a3c3fc0e2.zip
tdf#92925 Remove SVM export from Impress/Draw
There's no good reason to export a Draw/Impress document as an SVM. It can still be used as a fallback in exporting an image in any document (including Impress/Draw) though so leaving support to export images as SVM. Change-Id: I3eb5fbd241fe7535b316c2559bbfd09fec3680c7 Reviewed-on: https://gerrit.libreoffice.org/20475 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/filter/exportdialog.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/svtools/source/filter/exportdialog.cxx b/svtools/source/filter/exportdialog.cxx
index 3b303fe4bc4c..6ae9509b8025 100644
--- a/svtools/source/filter/exportdialog.cxx
+++ b/svtools/source/filter/exportdialog.cxx
@@ -54,7 +54,6 @@
#define FORMAT_EPS 14
#define FORMAT_MET 15
#define FORMAT_SVG 16
-#define FORMAT_SVM 17
#define UNIT_DEFAULT -1
#define UNIT_INCH 0
@@ -89,8 +88,6 @@ static sal_Int16 GetFilterFormat(const OUString& rExt)
nFormat = FORMAT_MET;
else if ( rExt == "SVG" )
nFormat = FORMAT_SVG;
- else if ( rExt == "SVM" )
- nFormat = FORMAT_SVM;
return nFormat;
}