diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2016-09-22 21:39:48 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-22 19:41:49 +0000 |
commit | 39293397dd4438f62d989a6bd390ac8396b6ca17 (patch) | |
tree | a279a6450a4c734cfeb87429a74e420b08988f84 /vcl | |
parent | c30fbfba96ab2d8d6229d7f4010718bd2b3c97d9 (diff) |
fix windows build
by reverting part of commit
c4cd079b8f613084a99a83b95c3968b65cbd8900
Author: Noel Grandin <noel@peralex.com>
Date: Thu Sep 22 15:08:42 2016 +0200
loplugin:unusedmethods in sc..vcl
Change-Id: I4d925532369b37e13d97edd907c12f59a350e6ea
Reviewed-on: https://gerrit.libreoffice.org/29196
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/FilterConfigCache.cxx | 7 | ||||
-rw-r--r-- | vcl/source/filter/FilterConfigCache.hxx | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/vcl/source/filter/FilterConfigCache.cxx b/vcl/source/filter/FilterConfigCache.cxx index 8a0678fd8d16..33f0aa966183 100644 --- a/vcl/source/filter/FilterConfigCache.cxx +++ b/vcl/source/filter/FilterConfigCache.cxx @@ -370,6 +370,13 @@ OUString FilterConfigCache::GetImportFormatName( sal_uInt16 nFormat ) return OUString(""); } +OUString FilterConfigCache::GetImportFormatMediaType( sal_uInt16 nFormat ) +{ + if( nFormat < aImport.size() ) + return aImport[ nFormat ].sMediaType; + return OUString(""); +} + OUString FilterConfigCache::GetImportFormatShortName( sal_uInt16 nFormat ) { if( nFormat < aImport.size() ) diff --git a/vcl/source/filter/FilterConfigCache.hxx b/vcl/source/filter/FilterConfigCache.hxx index 0a6c537cf903..eb3221835769 100644 --- a/vcl/source/filter/FilterConfigCache.hxx +++ b/vcl/source/filter/FilterConfigCache.hxx @@ -86,6 +86,7 @@ public: OUString GetImportFilterName( sal_uInt16 nFormat ); OUString GetImportFormatName( sal_uInt16 nFormat ); OUString GetImportFormatExtension( sal_uInt16 nFormat, sal_Int32 nEntry = 0); + OUString GetImportFormatMediaType( sal_uInt16 nFormat ); OUString GetImportFormatShortName( sal_uInt16 nFormat ); OUString GetImportWildcard( sal_uInt16 nFormat, sal_Int32 nEntry ); OUString GetImportFilterType( sal_uInt16 nFormat ); |