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".
This commit is contained in:
parent
221b85ed29
commit
c2927bbd85
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue