diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-02-25 22:35:27 -0800 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-02-25 22:35:27 -0800 |
commit | c2927bbd85e36db84830f7854e32194e24254505 (patch) | |
tree | 16be139690376e46b04b43618f6694ba8f2d0348 /lingucomponent | |
parent | 221b85ed297f7cc4d94f5483828a87c059dd6a14 (diff) |
Fix issue with removal of "using namespace rtl"
OStringBuffer is only used in the debug code and the correct #include is
located with it. We don't really need the "using ::rtl::OStringBuffer".
Diffstat (limited to 'lingucomponent')
-rw-r--r-- | lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx b/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx index 900628738700..087a4cd45b23 100644 --- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx +++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx @@ -47,7 +47,6 @@ #include <osl/file.hxx> #include <rtl/ustrbuf.hxx> - using namespace utl; using namespace osl; using namespace com::sun::star; @@ -60,8 +59,8 @@ using namespace linguistic; using ::rtl::OUString; using ::rtl::OString; using ::rtl::OUStringBuffer; -using ::rtl::OStringBuffer; using ::rtl::OUStringToOString; + /////////////////////////////////////////////////////////////////////////// // dbg_dump for development #if OSL_DEBUG_LEVEL > 1 |