summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--canvas/source/factory/cf_service.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/canvas/source/factory/cf_service.cxx b/canvas/source/factory/cf_service.cxx
index 5ef726acc079..3e655b38b0fa 100644
--- a/canvas/source/factory/cf_service.cxx
+++ b/canvas/source/factory/cf_service.cxx
@@ -307,7 +307,7 @@ Reference<XInterface> CanvasFactory::lookupAndUse(
bool bForceLastEntry(false);
checkConfigFlag( bForceLastEntry,
m_bCacheHasForcedLastImpl,
- OUString("ForceSafeServiceImpl") );
+ "ForceSafeServiceImpl" );
// tdf#93870 - force VCL canvas in OpenGL mode for now.
if( OpenGLWrapper::isVCLOpenGLEnabled() )
@@ -317,13 +317,13 @@ Reference<XInterface> CanvasFactory::lookupAndUse(
bool bUseAAEntry(true);
checkConfigFlag( bUseAAEntry,
m_bCacheHasUseAAEntry,
- OUString("UseAntialiasingCanvas") );
+ "UseAntialiasingCanvas" );
// use accelerated canvas, if config flag set (or not existing)
bool bUseAcceleratedEntry(true);
checkConfigFlag( bUseAcceleratedEntry,
m_bCacheHasUseAcceleratedEntry,
- OUString("UseAcceleratedCanvas") );
+ "UseAcceleratedCanvas" );
// try to reuse last working implementation for given service name
const CacheVector::iterator aEnd(m_aCachedImplementations.end());