summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/service.cxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-02-21 00:10:57 +0100
committerMatúš Kukan <matus.kukan@collabora.com>2014-02-21 07:52:25 +0100
commitf96926c1c22a1bceea42f4ebd5ec610d48833c18 (patch)
treef973bfcf2ba0ab4ebab7671e202bd6efa3fcb615 /sc/source/ui/vba/service.cxx
parent65a43d682f979bfb6189dfc4e138ad9ac34adcae (diff)
vbaobj: One more ctor feature for ScVbaGlobals.
Change-Id: I741d1e0af1d6f631b321b76172b988262c0f709f
Diffstat (limited to 'sc/source/ui/vba/service.cxx')
-rw-r--r--sc/source/ui/vba/service.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/sc/source/ui/vba/service.cxx b/sc/source/ui/vba/service.cxx
index 31e28d3a32c0..76dbc359e736 100644
--- a/sc/source/ui/vba/service.cxx
+++ b/sc/source/ui/vba/service.cxx
@@ -46,10 +46,6 @@ namespace window
{
extern sdecl::ServiceDecl const serviceDecl;
}
-namespace globals
-{
-extern sdecl::ServiceDecl const serviceDecl;
-}
namespace hyperlink
{
extern sdecl::ServiceDecl const serviceDecl;
@@ -66,7 +62,7 @@ extern "C"
registry::XRegistryKey * pRegistryKey )
{
void* pRet = component_getFactoryHelper(
- pImplName, pServiceManager, pRegistryKey, range::serviceDecl, workbook::serviceDecl, worksheet::serviceDecl, globals::serviceDecl, window::serviceDecl, hyperlink::serviceDecl, application::serviceDecl );
+ pImplName, pServiceManager, pRegistryKey, range::serviceDecl, workbook::serviceDecl, worksheet::serviceDecl, window::serviceDecl, hyperlink::serviceDecl, application::serviceDecl );
return pRet;
}
}