diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-14 12:56:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-14 20:31:29 +0200 |
commit | 572c2ee4c4f4b8e53f2fa4398a5600f1468f3a38 (patch) | |
tree | 6f886963882629e58b4908ed73862658868030f1 /sd/inc | |
parent | 412ec9ec100fb377791b9bced8bc61ce75870e10 (diff) |
no need to load ImportPPT symbol at runtime
Change-Id: I4b50822183d9752d6a413b0308e1d661785fb10e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139937
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/sdfilter.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sd/inc/sdfilter.hxx b/sd/inc/sdfilter.hxx index 707679642dee..928a1c0575d4 100644 --- a/sd/inc/sdfilter.hxx +++ b/sd/inc/sdfilter.hxx @@ -45,7 +45,6 @@ public: virtual bool Export() = 0; #ifndef DISABLE_DYNLOADING - static void Preload(); /// Open library @rLibraryName and lookup symbol @rFnSymbol static oslGenericFunction GetLibrarySymbol( const OUString& rLibraryName, const OUString &rFnSymbol ); #endif @@ -73,5 +72,8 @@ SD_DLLPUBLIC bool ExportPPT( const std::vector< css::beans::PropertyValue >& rMe SvMemoryStream* pVBA, sal_uInt32 nCnvrtFlags ); +// exported function +SD_DLLPUBLIC bool ImportPPT( + SdDrawDocument* pDocument, SvStream& rDocStream, SotStorage& rStorage, SfxMedium& rMedium ); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |