summaryrefslogtreecommitdiffstats
path: root/sd
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-10-07 08:48:05 +0300
committerTor Lillqvist <tml@iki.fi>2012-10-07 08:48:41 +0300
commit914dae47b7be610d6a79c21f7df8f1c7ddb9a1b2 (patch)
tree80c61fd4a5242623dbe2861edd256242eaae992f /sd
parentRevert "For some reason saxparser aborts for me without this" (diff)
downloadcore-914dae47b7be610d6a79c21f7df8f1c7ddb9a1b2.tar.gz
core-914dae47b7be610d6a79c21f7df8f1c7ddb9a1b2.zip
Forgot to change the function pointer type name in two more places
Change-Id: Ibe88fd010edbf83e06dc6a5c6b0e0b25d564fd0b
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/cgm/sdcgmfilter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/filter/cgm/sdcgmfilter.cxx b/sd/source/filter/cgm/sdcgmfilter.cxx
index 7135ee81fc1d..c5d1ccf4822e 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