summaryrefslogtreecommitdiff
path: root/extensions/source/abpilot
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-10 14:31:21 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-10 17:39:55 +0100
commitc7f1ce594c641698e8ed8fc99f029030978f91e1 (patch)
tree924dc417a8d635ad3fb95023631eb6c6a3b9cc8a /extensions/source/abpilot
parentc63ba20f2a591c50c3cee0bb5a2e1e8665e3e159 (diff)
extensions: simplify deprecated XTypeProvider.getImplementationId
Change-Id: I234d36bc7ef9e8e27087067f6e43d7e522e52d4d
Diffstat (limited to 'extensions/source/abpilot')
-rw-r--r--extensions/source/abpilot/unodialogabp.cxx12
1 files changed, 1 insertions, 11 deletions
diff --git a/extensions/source/abpilot/unodialogabp.cxx b/extensions/source/abpilot/unodialogabp.cxx
index a69131a648e1..f3e3bd5dadcb 100644
--- a/extensions/source/abpilot/unodialogabp.cxx
+++ b/extensions/source/abpilot/unodialogabp.cxx
@@ -83,17 +83,7 @@ namespace abp
Sequence<sal_Int8> SAL_CALL OABSPilotUno::getImplementationId( ) throw(RuntimeException, std::exception)
{
- static ::cppu::OImplementationId* s_pId;
- if ( !s_pId )
- {
- ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
- if ( !s_pId )
- {
- static ::cppu::OImplementationId s_aId;
- s_pId = &s_aId;
- }
- }
- return s_pId->getImplementationId();
+ return css::uno::Sequence<sal_Int8>();
}