From 4feaf73a4da939be741516edd3636d1a3c3fc0e2 Mon Sep 17 00:00:00 2001 From: Bryan Quigley Date: Tue, 8 Dec 2015 11:51:55 -0500 Subject: 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 Reviewed-by: jan iversen --- svtools/source/filter/exportdialog.cxx | 3 --- 1 file changed, 3 deletions(-) (limited to 'svtools') 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; } -- cgit