summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorBryan Quigley <gquigs@gmail.com>2015-12-01 16:46:11 -0500
committerNoel Grandin <noelgrandin@gmail.com>2015-12-02 06:34:54 +0000
commit630ec7110ec822d1d380d5181bcbb2570a129a21 (patch)
treec464683ce9ed60826e926a3370c420047398978d /svtools
parenta454a9b3ae0f6ab81012fbef7b3ff6f0f44bf6cb (diff)
tdf#92925 Remove XPM export
XPM was used to create icons but isn't used much anymore. Import supoort was tested and still works. Change-Id: I50b15bc0938c114a432e93781a92e9db38810f49 Reviewed-on: https://gerrit.libreoffice.org/20341 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
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 ae331cce6c5e..6ab5ab82b7f4 100644
--- a/svtools/source/filter/exportdialog.cxx
+++ b/svtools/source/filter/exportdialog.cxx
@@ -52,7 +52,6 @@
#define FORMAT_PGM 6
#define FORMAT_PPM 7
#define FORMAT_TIF 10
-#define FORMAT_XPM 11
#define FORMAT_WMF 12
#define FORMAT_EMF 13
#define FORMAT_EPS 14
@@ -89,8 +88,6 @@ static sal_Int16 GetFilterFormat(const OUString& rExt)
nFormat = FORMAT_PPM;
else if ( rExt == "TIF" )
nFormat = FORMAT_TIF;
- else if ( rExt == "XPM" )
- nFormat = FORMAT_XPM;
else if ( rExt == "WMF" )
nFormat = FORMAT_WMF;
else if ( rExt == "EMF" )