summaryrefslogtreecommitdiffstats
path: root/svtools
diff options
context:
space:
mode:
authorBryan Quigley <gquigs@gmail.com>2015-11-17 13:49:13 -0500
committerTomaž Vajngerl <quikee@gmail.com>2015-12-01 18:12:27 +0000
commitf3f653e106a3ff9d33280a1786ece974d7a77735 (patch)
treefcc4e513be165b8d1ef6b38867c44d58279606df /svtools
parenttdf#94138 Use correct fonts for multiline edit when printing (diff)
downloadcore-f3f653e106a3ff9d33280a1786ece974d7a77735.tar.gz
core-f3f653e106a3ff9d33280a1786ece974d7a77735.zip
tdf#92925 Remove PCT export
Mac PICT was replaced (by PDF) after Apple moved from Mac Classic. I tested import and it still works Change-Id: I931036d3946240280d406bd4abbcef6e0f86d894 Reviewed-on: https://gerrit.libreoffice.org/20029 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@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 ebe0d29e2c1a..c48f5090ede4 100644
--- a/svtools/source/filter/exportdialog.cxx
+++ b/svtools/source/filter/exportdialog.cxx
@@ -51,7 +51,6 @@
#define FORMAT_PBM 5
#define FORMAT_PGM 6
#define FORMAT_PPM 7
-#define FORMAT_PCT 8
#define FORMAT_RAS 9
#define FORMAT_TIF 10
#define FORMAT_XPM 11
@@ -89,8 +88,6 @@ static sal_Int16 GetFilterFormat(const OUString& rExt)
nFormat = FORMAT_PGM;
else if ( rExt == "PPM" )
nFormat = FORMAT_PPM;
- else if ( rExt == "PCT" )
- nFormat = FORMAT_PCT;
else if ( rExt == "RAS" )
nFormat = FORMAT_RAS;
else if ( rExt == "TIF" )