diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-04-25 17:02:30 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-04-25 22:20:04 +0200 |
commit | e35f2f0631784c1f58dbef5cb819a48b3a4703f4 (patch) | |
tree | 6b2be0f01cb204e3d860ab149004c80c5cd6012b /toolkit | |
parent | 6f906d9c26e90f507299bc117dac8c9859e6b182 (diff) |
don't pollute global namespace
Change-Id: Iffeeffb015c59ea787838c737c6a11f6fbef2794
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/controls/unocontrols.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/toolkit/source/controls/unocontrols.cxx b/toolkit/source/controls/unocontrols.cxx index 669a8b305da4..abff7d28bb8f 100644 --- a/toolkit/source/controls/unocontrols.cxx +++ b/toolkit/source/controls/unocontrols.cxx @@ -62,7 +62,10 @@ #include <algorithm> #include <functional> -using namespace ::com::sun::star; +using namespace css; +using namespace css::awt; +using namespace css::lang; +using namespace css::uno; using ::com::sun::star::graphic::XGraphic; using ::com::sun::star::uno::Reference; using namespace ::toolkit; |