summaryrefslogtreecommitdiff
path: root/cppuhelper/source/macro_expander.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-04-18 15:59:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-04-18 15:59:58 +0200
commita26c2ee3c9ca783f0281dc0dd87c1747daac63a6 (patch)
tree9d06966115a429b96e806fc75e417b35231fef5f /cppuhelper/source/macro_expander.cxx
parent7746e42006a5732a9e26dd21481391f0419d0a2e (diff)
Put create_bootstrap_macro_expander_factory properly into a header
...and fix the typo in its name.
Diffstat (limited to 'cppuhelper/source/macro_expander.cxx')
-rw-r--r--cppuhelper/source/macro_expander.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/cppuhelper/source/macro_expander.cxx b/cppuhelper/source/macro_expander.cxx
index eab09c55ab16..030e22f81ba7 100644
--- a/cppuhelper/source/macro_expander.cxx
+++ b/cppuhelper/source/macro_expander.cxx
@@ -181,11 +181,9 @@ Reference< XInterface > SAL_CALL service_create(
}
-namespace cppu
-{
+namespace cppuhelper { namespace detail {
-//##################################################################################################
-Reference< lang::XSingleComponentFactory > create_boostrap_macro_expander_factory() SAL_THROW(())
+Reference< lang::XSingleComponentFactory > create_bootstrap_macro_expander_factory() SAL_THROW(())
{
Reference< lang::XSingleComponentFactory > free(::cppu::createSingleComponentFactory(
service_create,
@@ -203,6 +201,6 @@ Reference< lang::XSingleComponentFactory > create_boostrap_macro_expander_factor
SAL_NO_ACQUIRE);
}
-}
+} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */