summaryrefslogtreecommitdiffstats
path: root/desktop/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-09-23 07:48:10 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-09-23 07:48:30 +0200
commitd77b49f070a562d2ac0df3174cf32d88680ba7a0 (patch)
treef2ec903df14a0b413c7fef749af575ca7cb62c87 /desktop/inc
parentstarmath: Prefix members of SmErrorDesc (diff)
downloadcore-d77b49f070a562d2ac0df3174cf32d88680ba7a0.tar.gz
core-d77b49f070a562d2ac0df3174cf32d88680ba7a0.zip
desktop: avoid 'using' in headers
Change-Id: I9517a982daa48a6eb848360dee7739d15d42a971
Diffstat (limited to 'desktop/inc')
-rw-r--r--desktop/inc/lib/init.hxx9
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: */