[Libreoffice-commits] .: sd/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Sat Oct 6 22:49:09 PDT 2012
sd/source/filter/cgm/sdcgmfilter.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 914dae47b7be610d6a79c21f7df8f1c7ddb9a1b2
Author: Tor Lillqvist <tml at iki.fi>
Date: Sun Oct 7 08:48:05 2012 +0300
Forgot to change the function pointer type name in two more places
Change-Id: Ibe88fd010edbf83e06dc6a5c6b0e0b25d564fd0b
diff --git a/sd/source/filter/cgm/sdcgmfilter.cxx b/sd/source/filter/cgm/sdcgmfilter.cxx
index 7135ee8..c5d1ccf 100644
--- a/sd/source/filter/cgm/sdcgmfilter.cxx
+++ b/sd/source/filter/cgm/sdcgmfilter.cxx
@@ -108,7 +108,7 @@ sal_Bool SdCGMFilter::Import()
mxModel.is() )
{
#ifndef DISABLE_DYNLOADING
- ImportCGMPointer FncImportCGM = reinterpret_cast< ImportCGM >( pLibrary->getFunctionSymbol( "ImportCGM" ) );
+ ImportCGMPointer FncImportCGM = reinterpret_cast< ImportCGMPointer >( pLibrary->getFunctionSymbol( "ImportCGM" ) );
#else
ImportCGMPointer FncImportCGM = ImportCGM;
#endif
@@ -162,7 +162,7 @@ sal_Bool SdCGMFilter::Export()
mxModel.is() )
{
#ifndef DISABLE_DYNLOADING
- ExportCGMPointer FncCGMExport = reinterpret_cast< ExportCGM >( pLibrary->getFunctionSymbol( "ExportCGM" ) );
+ ExportCGMPointer FncCGMExport = reinterpret_cast< ExportCGMPointer >( pLibrary->getFunctionSymbol( "ExportCGM" ) );
#else
ExportCGMPointer FncCGMExport = ExportCGM;
#endif
More information about the Libreoffice-commits
mailing list