summaryrefslogtreecommitdiff
path: root/svtools/source/misc/svtaccessiblefactory.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/misc/svtaccessiblefactory.cxx')
-rw-r--r--svtools/source/misc/svtaccessiblefactory.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/misc/svtaccessiblefactory.cxx b/svtools/source/misc/svtaccessiblefactory.cxx
index b97384d29866..08bb8710a555 100644
--- a/svtools/source/misc/svtaccessiblefactory.cxx
+++ b/svtools/source/misc/svtaccessiblefactory.cxx
@@ -219,7 +219,7 @@ namespace svt
#if HAVE_FEATURE_DESKTOP
// load the library implementing the factory
- if ( !s_pFactory.get() )
+ if (!s_pFactory)
{
#ifndef DISABLE_DYNLOADING
const OUString sModuleName( SVLIBRARY( "acc" ));
@@ -249,7 +249,7 @@ namespace svt
}
#endif // HAVE_FEATURE_DESKTOP
- if ( !s_pFactory.get() )
+ if (!s_pFactory)
// the attempt to load the lib, or to create the factory, failed
// -> fall back to a dummy factory
s_pFactory = new AccessibleDummyFactory;