diff options
author | Bryan Quigley <gquigs@gmail.com> | 2015-12-01 17:04:14 -0500 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-12-02 06:31:38 +0000 |
commit | 9027629b0e09b3b024a5821bb791308039bb5d8b (patch) | |
tree | d18d50799cd4a23c2a63e14692fa919e92dff885 /svtools/source | |
parent | 02f2c2f8a160133731d707a8359f5cd576bff434 (diff) |
tdf#92925 Remove RAS export
RAS was last used on Sun's now defunct SunOS.
Import was tested and still works.
Change-Id: I9fb9b7965279391922f19ec1f9e4a53134d41f5c
Reviewed-on: https://gerrit.libreoffice.org/20342
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svtools/source')
-rw-r--r-- | svtools/source/filter/exportdialog.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/svtools/source/filter/exportdialog.cxx b/svtools/source/filter/exportdialog.cxx index c48f5090ede4..ae331cce6c5e 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_RAS 9 #define FORMAT_TIF 10 #define FORMAT_XPM 11 #define FORMAT_WMF 12 @@ -88,8 +87,6 @@ static sal_Int16 GetFilterFormat(const OUString& rExt) nFormat = FORMAT_PGM; else if ( rExt == "PPM" ) nFormat = FORMAT_PPM; - else if ( rExt == "RAS" ) - nFormat = FORMAT_RAS; else if ( rExt == "TIF" ) nFormat = FORMAT_TIF; else if ( rExt == "XPM" ) |