summaryrefslogtreecommitdiffstats
path: root/vcl
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@verizon.net>2013-05-06 14:27:03 -0400
committerPeter Foley <pefoley2@verizon.net>2013-05-06 14:27:03 -0400
commit38e95dc334047dfb9a7ae959deda4e4d2f39b3bf (patch)
tree620dac7d724a06aad05bdd6403cafac1b31855fb /vcl
parentconfigure: force ENABLE_QUICKSTART_LIBPNG to None with --enable-headless (diff)
downloadcore-38e95dc334047dfb9a7ae959deda4e4d2f39b3bf.tar.gz
core-38e95dc334047dfb9a7ae959deda4e4d2f39b3bf.zip
Revert "properly prefix graphic filter methods"
This reverts commit eacf12eeb174e35a301570726bf74434a4dd4b94. Appears to be broken. Conflicts: vcl/source/filter/graphicfilter.cxx Change-Id: I9ae3fbac2e7e9d08484c063cdb10e080ca89def2
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/filter/graphicfilter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/graphicfilter.cxx b/vcl/source/filter/graphicfilter.cxx
index 36389eabc698..047cee42be84 100644
--- a/vcl/source/filter/graphicfilter.cxx
+++ b/vcl/source/filter/graphicfilter.cxx
@@ -985,7 +985,7 @@ PFilterCall ImpFilterLibCacheEntry::GetImportFunction()
if( !mpfnImport )
{
#ifndef DISABLE_DYNLOADING
- mpfnImport = (PFilterCall) maLibrary.getFunctionSymbol(OUString(maFiltername+IMPORT_FUNCTION_NAME));
+ mpfnImport = (PFilterCall) maLibrary.getFunctionSymbol(OUString(IMPORT_FUNCTION_NAME));
#else
if( maFiltername.EqualsAscii( "icd" ) )
mpfnImport = icdGraphicImport;