diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-09-23 07:48:10 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-09-23 07:48:30 +0200 |
commit | d77b49f070a562d2ac0df3174cf32d88680ba7a0 (patch) | |
tree | f2ec903df14a0b413c7fef749af575ca7cb62c87 /desktop/inc | |
parent | 5ca4acf877834c51d896268cf3dd390903b2248b (diff) |
desktop: avoid 'using' in headers
Change-Id: I9517a982daa48a6eb848360dee7739d15d42a971
Diffstat (limited to 'desktop/inc')
-rw-r--r-- | desktop/inc/lib/init.hxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/desktop/inc/lib/init.hxx b/desktop/inc/lib/init.hxx index 3f4d680b7aa4..2d31b572b329 100644 --- a/desktop/inc/lib/init.hxx +++ b/desktop/inc/lib/init.hxx @@ -12,16 +12,15 @@ #include <memory> #include "../../source/inc/desktopdllapi.h" -using namespace css; -using namespace boost; - namespace desktop { struct DESKTOP_DLLPUBLIC LibLODocument_Impl : public _LibreOfficeKitDocument { - uno::Reference<css::lang::XComponent> mxComponent; + css::uno::Reference<css::lang::XComponent> mxComponent; std::shared_ptr< LibreOfficeKitDocumentClass > m_pDocumentClass; - explicit LibLODocument_Impl(const uno::Reference <css::lang::XComponent> &xComponent); + explicit LibLODocument_Impl(const css::uno::Reference <css::lang::XComponent> &xComponent); ~LibLODocument_Impl(); }; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |