summaryrefslogtreecommitdiffstats
path: root/cppu
diff options
context:
space:
mode:
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/uno/IdentityMapping.hxx7
-rw-r--r--cppu/source/uno/loadmodule.hxx12
2 files changed, 12 insertions, 7 deletions
diff --git a/cppu/source/uno/IdentityMapping.hxx b/cppu/source/uno/IdentityMapping.hxx
index 4a6db6d81bc1..8ba081b0099f 100644
--- a/cppu/source/uno/IdentityMapping.hxx
+++ b/cppu/source/uno/IdentityMapping.hxx
@@ -21,8 +21,11 @@
#include <uno/mapping.h>
-namespace com::sun::star::uno { class Environment; }
+namespace com::sun::star::uno
+{
+class Environment;
+}
-uno_Mapping * createIdentityMapping(const css::uno::Environment & rEnv);
+uno_Mapping* createIdentityMapping(const css::uno::Environment& rEnv);
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/cppu/source/uno/loadmodule.hxx b/cppu/source/uno/loadmodule.hxx
index 4d6c322c1078..694b1402492e 100644
--- a/cppu/source/uno/loadmodule.hxx
+++ b/cppu/source/uno/loadmodule.hxx
@@ -22,10 +22,13 @@
#include <sal/config.h>
#include <rtl/ustring.hxx>
-namespace osl { class Module; }
-
-namespace cppu::detail {
+namespace osl
+{
+class Module;
+}
+namespace cppu::detail
+{
#ifndef DISABLE_DYNLOADING
/** Load a module.
@@ -36,10 +39,9 @@ namespace cppu::detail {
@return false if the module could not be loaded, otherwise true
*/
-bool loadModule(osl::Module & rModule, OUString const & name);
+bool loadModule(osl::Module& rModule, OUString const& name);
#endif
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */