[Libreoffice-commits] .: lingucomponent/source

Joseph Powers jpowers at kemper.freedesktop.org
Fri Feb 25 22:35:44 PST 2011


 lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 582f61a3f4d658aff04faca58abea74aeb301945
Author: Joseph Powers <jpowers27 at cox.net>
Date:   Fri Feb 25 22:35:27 2011 -0800

    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".

diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx b/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx
index 6f6ec46..1f6518e 100644
--- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx
+++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx
@@ -2,7 +2,7 @@
 /*************************************************************************
  *
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- * 
+ *
  * Copyright 2000, 2010 Oracle and/or its affiliates.
  *
  * OpenOffice.org - a multi-platform office productivity suite
@@ -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


More information about the Libreoffice-commits mailing list