diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-10-07 08:48:05 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-10-07 08:48:41 +0300 |
commit | 914dae47b7be610d6a79c21f7df8f1c7ddb9a1b2 (patch) | |
tree | 80c61fd4a5242623dbe2861edd256242eaae992f /sd | |
parent | 06d51d2790b99e31cdcfce366956de35d6ca47d0 (diff) |
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.cxx | 4 |
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 |