Tag: cws_src680_dba24a
User: oj      
Date: 2007-08-08 11:24:58+0000
Modified:
   dba/reportdesign/source/core/api/services.cxx
   dba/reportdesign/source/filter/xml/xmlCell.cxx
   dba/reportdesign/source/filter/xml/xmlColumn.cxx
   dba/reportdesign/source/filter/xml/xmlCondPrtExpr.cxx
   dba/reportdesign/source/filter/xml/xmlControlProperty.cxx
   dba/reportdesign/source/filter/xml/xmlExport.hxx
   dba/reportdesign/source/filter/xml/xmlFixedContent.cxx
   dba/reportdesign/source/filter/xml/xmlFixedText.cxx
   dba/reportdesign/source/filter/xml/xmlFormatCondition.cxx
   dba/reportdesign/source/filter/xml/xmlFormattedField.cxx
   dba/reportdesign/source/filter/xml/xmlFunction.cxx
   dba/reportdesign/source/filter/xml/xmlImage.cxx
   dba/reportdesign/source/filter/xml/xmlMasterFields.cxx
   dba/reportdesign/source/filter/xml/xmlReport.cxx
   dba/reportdesign/source/filter/xml/xmlReportElement.cxx
   dba/reportdesign/source/filter/xml/xmlReportElementBase.cxx
   dba/reportdesign/source/filter/xml/xmlRow.cxx
   dba/reportdesign/source/filter/xml/xmlSection.cxx
   dba/reportdesign/source/filter/xml/xmlStyleImport.cxx
   dba/reportdesign/source/filter/xml/xmlSubDocument.cxx
   dba/reportdesign/source/filter/xml/xmlTable.cxx
   dba/reportdesign/source/filter/xml/xmlservices.cxx
   dba/reportdesign/source/ui/misc/rptuiservices.cxx

Log:
 #i80308# remove using rtl

File Changes:

Directory: /dba/reportdesign/source/core/api/
=============================================

File [changed]: services.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/core/api/services.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +2 -3
-------------------
--- services.cxx        2007-07-09 11:56:14+0000        1.2
+++ services.cxx        2007-08-08 11:24:55+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: services.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:14 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -62,7 +62,6 @@
 
 
/********************************************************************************************/
 
-using namespace ::rtl;
 using namespace ::reportdesign;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;

Directory: /dba/reportdesign/source/filter/xml/
===============================================

File [changed]: xmlCell.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlCell.cxx?r1=1.2&r2=1.2.10.1
Delta lines:  +6 -7
-------------------
--- xmlCell.cxx 2007-07-09 11:56:17+0000        1.2
+++ xmlCell.cxx 2007-08-08 11:24:55+0000        1.2.10.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlCell.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.10.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:17 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -100,7 +100,6 @@
 namespace rptxml
 {
     using namespace ::comphelper;
-       using namespace ::rtl;
     using namespace ::com::sun::star;
        using namespace uno;
        using namespace beans;
@@ -110,7 +109,7 @@
 
 OXMLCell::OXMLCell( ORptFilter& rImport
                                ,sal_uInt16 nPrfx
-                               ,const OUString& _sLocalName
+                ,const ::rtl::OUString& _sLocalName
                                ,const Reference< XAttributeList > & _xAttrList
                                ,OXMLTable* _pContainer
                 ,OXMLCell* _pCell) :
@@ -130,7 +129,7 @@
        const sal_Int16 nLength = (_xAttrList.is()) ? _xAttrList->getLength() : 
0;
        for(sal_Int16 i = 0; i < nLength; ++i)
        {
-               OUString sLocalName;
+        ::rtl::OUString sLocalName;
                const rtl::OUString sAttrName = _xAttrList->getNameByIndex( i );
                const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                rtl::OUString sValue = _xAttrList->getValueByIndex( i );
@@ -159,7 +158,7 @@
 // 
-----------------------------------------------------------------------------
 SvXMLImportContext* OXMLCell::CreateChildContext(
                sal_uInt16 _nPrefix,
-               const OUString& _rLocalName,
+               const ::rtl::OUString& _rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 0;

File [changed]: xmlColumn.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlColumn.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +5 -6
-------------------
--- xmlColumn.cxx       2007-07-09 11:56:17+0000        1.2
+++ xmlColumn.cxx       2007-08-08 11:24:55+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlColumn.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:17 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -86,7 +86,6 @@
 namespace rptxml
 {
     using namespace ::comphelper;
-       using namespace ::rtl;
        using namespace ::com::sun::star::uno;
        using namespace ::com::sun::star::beans;
        using namespace ::com::sun::star::xml::sax;
@@ -95,7 +94,7 @@
 
 OXMLRowColumn::OXMLRowColumn( ORptFilter& rImport
                                ,sal_uInt16 nPrfx
-                               ,const OUString& _sLocalName
+                               ,const ::rtl::OUString& _sLocalName
                                ,const Reference< XAttributeList > & _xAttrList
                                ,OXMLTable* _pContainer
                 ) :
@@ -110,7 +109,7 @@
        const sal_Int16 nLength = (_xAttrList.is()) ? _xAttrList->getLength() : 
0;
        for(sal_Int16 i = 0; i < nLength; ++i)
        {
-               OUString sLocalName;
+        ::rtl::OUString sLocalName;
                const rtl::OUString sAttrName = _xAttrList->getNameByIndex( i );
                const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                rtl::OUString sValue = _xAttrList->getValueByIndex( i );
@@ -134,7 +133,7 @@
 // 
-----------------------------------------------------------------------------
 SvXMLImportContext* OXMLRowColumn::CreateChildContext(
                sal_uInt16 nPrefix,
-               const OUString& rLocalName,
+               const ::rtl::OUString& rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 0;

File [changed]: xmlCondPrtExpr.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlCondPrtExpr.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +4 -5
-------------------
--- xmlCondPrtExpr.cxx  2007-07-09 11:56:17+0000        1.2
+++ xmlCondPrtExpr.cxx  2007-08-08 11:24:55+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlCondPrtExpr.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:17 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -67,7 +67,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star;
        using namespace report;
        using namespace uno;
@@ -76,7 +75,7 @@
 
 OXMLCondPrtExpr::OXMLCondPrtExpr( ORptFilter& _rImport,
                                sal_uInt16 nPrfx
-                ,const OUString& rLName
+                ,const ::rtl::OUString& rLName
                 ,const uno::Reference< xml::sax::XAttributeList > & _xAttrList
                                ,const Reference< XPropertySet > & _xComponent 
) :
        SvXMLImportContext( _rImport, nPrfx, rLName )
@@ -92,7 +91,7 @@
        {
            for(sal_Int16 i = 0; i < nLength; ++i)
            {
-                   OUString sLocalName;
+                   ::rtl::OUString sLocalName;
                    const rtl::OUString sAttrName = _xAttrList->getNameByIndex( 
i );
                    const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                    const rtl::OUString sValue = _xAttrList->getValueByIndex( i 
);

File [changed]: xmlControlProperty.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlControlProperty.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +5 -6
-------------------
--- xmlControlProperty.cxx      2007-07-09 11:56:17+0000        1.2
+++ xmlControlProperty.cxx      2007-08-08 11:24:55+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlControlProperty.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:17 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -74,7 +74,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star::uno;
        using namespace ::com::sun::star::beans;
        using namespace ::com::sun::star::xml::sax;
@@ -83,7 +82,7 @@
 
 OXMLControlProperty::OXMLControlProperty( ORptFilter& rImport
                                ,sal_uInt16 nPrfx
-                               ,const OUString& _sLocalName
+                               ,const ::rtl::OUString& _sLocalName
                                ,const Reference< XAttributeList > & _xAttrList
                                ,const Reference< XPropertySet >& _xControl
                                ,OXMLControlProperty* _pContainer) :
@@ -105,7 +104,7 @@
        const sal_Int16 nLength = (_xAttrList.is()) ? _xAttrList->getLength() : 
0;
        for(sal_Int16 i = 0; i < nLength; ++i)
        {
-               OUString sLocalName;
+        ::rtl::OUString sLocalName;
                const rtl::OUString sAttrName = _xAttrList->getNameByIndex( i );
                const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                rtl::OUString sValue = _xAttrList->getValueByIndex( i );
@@ -157,7 +156,7 @@
 // 
-----------------------------------------------------------------------------
 SvXMLImportContext* OXMLControlProperty::CreateChildContext(
                sal_uInt16 nPrefix,
-               const OUString& rLocalName,
+               const ::rtl::OUString& rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 0;

File [changed]: xmlExport.hxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlExport.hxx?r1=1.2&r2=1.2.10.1
Delta lines:  +2 -3
-------------------
--- xmlExport.hxx       2007-07-09 11:56:17+0000        1.2
+++ xmlExport.hxx       2007-08-08 11:24:55+0000        1.2.10.1
@@ -6,9 +6,9 @@
  *
  *  $RCSfile: xmlExport.hxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.10.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:17 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -112,7 +112,6 @@
 
 namespace rptxml
 {
-using namespace ::rtl;
 using namespace ::xmloff::token;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::container;

File [changed]: xmlFixedContent.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlFixedContent.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +4 -5
-------------------
--- xmlFixedContent.cxx 2007-07-09 11:56:17+0000        1.2
+++ xmlFixedContent.cxx 2007-08-08 11:24:55+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlFixedContent.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:17 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -81,7 +81,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star;
 
 class OXMLCharContent : public XMLCharContext
@@ -156,7 +155,7 @@
 DBG_NAME( rpt_OXMLFixedContent )
 
 OXMLFixedContent::OXMLFixedContent( ORptFilter& rImport,
-                               sal_uInt16 nPrfx, const OUString& rLName
+                               sal_uInt16 nPrfx, const ::rtl::OUString& rLName
                                ,OXMLCell& _rCell
                 ,OXMLTable* _pContainer
                 ,bool _bInP) :
@@ -177,7 +176,7 @@
 // 
-----------------------------------------------------------------------------
 SvXMLImportContext* OXMLFixedContent::_CreateChildContext(
                sal_uInt16 nPrefix,
-               const OUString& rLocalName,
+               const ::rtl::OUString& rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 
OXMLReportElementBase::_CreateChildContext(nPrefix,rLocalName,xAttrList);

File [changed]: xmlFixedText.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlFixedText.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +3 -4
-------------------
--- xmlFixedText.cxx    2007-07-09 11:56:17+0000        1.2
+++ xmlFixedText.cxx    2007-08-08 11:24:55+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlFixedText.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:17 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -62,7 +62,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star;
        using namespace ::com::sun::star::report;
        using namespace ::com::sun::star::uno;
@@ -71,7 +70,7 @@
 
 OXMLFixedText::OXMLFixedText( ORptFilter& rImport,
                                sal_uInt16 nPrfx
-                , const OUString& rLName
+                , const ::rtl::OUString& rLName
                                ,const Reference< XFixedText > & _xComponent 
                 ) :
        SvXMLImportContext( rImport, nPrfx, rLName)

File [changed]: xmlFormatCondition.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlFormatCondition.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +4 -5
-------------------
--- xmlFormatCondition.cxx      2007-07-09 11:56:17+0000        1.2
+++ xmlFormatCondition.cxx      2007-08-08 11:24:55+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlFormatCondition.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:17 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -82,7 +82,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::comphelper;
        using namespace ::com::sun::star;
        using namespace ::com::sun::star::report;
@@ -93,7 +92,7 @@
 DBG_NAME( rpt_OXMLFormatCondition )
 
 OXMLFormatCondition::OXMLFormatCondition( ORptFilter& rImport,
-                               sal_uInt16 nPrfx, const OUString& rLName,
+                               sal_uInt16 nPrfx, const ::rtl::OUString& rLName,
                                const Reference< XAttributeList > & _xAttrList
                                ,const Reference< XFormatCondition > & 
_xComponent ) :
        SvXMLImportContext( rImport, nPrfx, rLName )
@@ -110,7 +109,7 @@
        {
                for(sal_Int16 i = 0; i < nLength; ++i)
                {
-                       OUString sLocalName;
+                ::rtl::OUString sLocalName;
                        const rtl::OUString sAttrName = 
_xAttrList->getNameByIndex( i );
                        const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                        rtl::OUString sValue = _xAttrList->getValueByIndex( i );

File [changed]: xmlFormattedField.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlFormattedField.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +4 -5
-------------------
--- xmlFormattedField.cxx       2007-07-09 11:56:17+0000        1.2
+++ xmlFormattedField.cxx       2007-08-08 11:24:55+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlFormattedField.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:17 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -74,13 +74,12 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star;
        using namespace xml::sax;
 DBG_NAME( rpt_OXMLFormattedField )
 
 OXMLFormattedField::OXMLFormattedField( ORptFilter& rImport,
-                               sal_uInt16 nPrfx, const OUString& rLName
+                               sal_uInt16 nPrfx, const ::rtl::OUString& rLName
                 ,const uno::Reference< xml::sax::XAttributeList > & _xAttrList
                 ,const uno::Reference< XFormattedField > & _xComponent 
                 ,OXMLTable* _pContainer
@@ -97,7 +96,7 @@
        {
                for(sal_Int16 i = 0; i < nLength; ++i)
                {
-                       OUString sLocalName;
+                ::rtl::OUString sLocalName;
                        const rtl::OUString sAttrName = 
_xAttrList->getNameByIndex( i );
                        const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                        rtl::OUString sValue = _xAttrList->getValueByIndex( i );

File [changed]: xmlFunction.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlFunction.cxx?r1=1.2&r2=1.2.10.1
Delta lines:  +4 -5
-------------------
--- xmlFunction.cxx     2007-07-09 11:56:17+0000        1.2
+++ xmlFunction.cxx     2007-08-08 11:24:55+0000        1.2.10.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlFunction.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.10.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:17 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -62,7 +62,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star;
        using namespace ::com::sun::star::uno;
        using namespace ::com::sun::star::report;
@@ -72,7 +71,7 @@
 
 OXMLFunction::OXMLFunction( ORptFilter& _rImport
                                ,sal_uInt16 nPrfx
-                               ,const OUString& _sLocalName
+                               ,const ::rtl::OUString& _sLocalName
                                ,const Reference< XAttributeList > & _xAttrList 
                 ,const Reference< XFunctionsSupplier >&        _xFunctions
                                ) :
@@ -93,7 +92,7 @@
        static const ::rtl::OUString s_sTRUE = 
::xmloff::token::GetXMLToken(XML_TRUE);
        for(sal_Int16 i = 0; i < nLength; ++i)
        {
-               OUString sLocalName;
+        ::rtl::OUString sLocalName;
                const rtl::OUString sAttrName = _xAttrList->getNameByIndex( i );
                const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                rtl::OUString sValue = _xAttrList->getValueByIndex( i );

File [changed]: xmlImage.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlImage.cxx?r1=1.2&r2=1.2.10.1
Delta lines:  +4 -5
-------------------
--- xmlImage.cxx        2007-07-09 11:56:18+0000        1.2
+++ xmlImage.cxx        2007-08-08 11:24:55+0000        1.2.10.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlImage.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.10.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:18 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -67,14 +67,13 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star;
        using namespace ::com::sun::star::uno;
        using namespace ::com::sun::star::xml::sax;
 DBG_NAME( rpt_OXMLImage )
 
 OXMLImage::OXMLImage( ORptFilter& rImport,
-                               sal_uInt16 nPrfx, const OUString& rLName,
+                               sal_uInt16 nPrfx, const ::rtl::OUString& rLName,
                                const Reference< XAttributeList > & _xAttrList
                                ,const Reference< XImageControl > & _xComponent 
                 ,OXMLTable* _pContainer) :
@@ -92,7 +91,7 @@
        {
                for(sal_Int16 i = 0; i < nLength; ++i)
                {
-                       OUString sLocalName;
+                ::rtl::OUString sLocalName;
                        const rtl::OUString sAttrName = 
_xAttrList->getNameByIndex( i );
                        const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                        rtl::OUString sValue = _xAttrList->getValueByIndex( i );

File [changed]: xmlMasterFields.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlMasterFields.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +5 -6
-------------------
--- xmlMasterFields.cxx 2007-07-09 11:56:18+0000        1.2
+++ xmlMasterFields.cxx 2007-08-08 11:24:55+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlMasterFields.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:18 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -62,7 +62,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star;
        using namespace ::com::sun::star::report;
        using namespace ::com::sun::star::uno;
@@ -70,7 +69,7 @@
 DBG_NAME( rpt_OXMLMasterFields )
 
 OXMLMasterFields::OXMLMasterFields( ORptFilter& rImport,
-                               sal_uInt16 nPrfx, const OUString& rLName,
+                               sal_uInt16 nPrfx, const ::rtl::OUString& rLName,
                                const Reference< XAttributeList > & _xAttrList
                                ,OXMLSubDocument* _pSubDocument
                 ) :
@@ -86,7 +85,7 @@
        const sal_Int16 nLength = (_xAttrList.is()) ? _xAttrList->getLength() : 
0;
        for(sal_Int16 i = 0; i < nLength; ++i)
        {
-               OUString sLocalName;
+        ::rtl::OUString sLocalName;
                const rtl::OUString sAttrName = _xAttrList->getNameByIndex( i );
                const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                rtl::OUString sValue = _xAttrList->getValueByIndex( i );
@@ -117,7 +116,7 @@
 // 
-----------------------------------------------------------------------------
 SvXMLImportContext* OXMLMasterFields::CreateChildContext(
                sal_uInt16 _nPrefix,
-               const OUString& _rLocalName,
+               const ::rtl::OUString& _rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 0;

File [changed]: xmlReport.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlReport.cxx?r1=1.2&r2=1.2.10.1
Delta lines:  +5 -6
-------------------
--- xmlReport.cxx       2007-07-09 11:56:18+0000        1.2
+++ xmlReport.cxx       2007-08-08 11:24:55+0000        1.2.10.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlReport.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.10.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:18 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -76,7 +76,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star;
        using namespace uno;
        using namespace xml::sax;
@@ -94,7 +93,7 @@
 DBG_NAME( rpt_OXMLReport )
 
 OXMLReport::OXMLReport( ORptFilter& rImport,
-                               sal_uInt16 nPrfx, const OUString& rLName,
+                               sal_uInt16 nPrfx, const ::rtl::OUString& rLName,
                                const Reference< XAttributeList > & _xAttrList 
                 ,const uno::Reference< report::XReportDefinition >& _xComponent
                                ,OXMLTable* _pContainer) :
@@ -115,7 +114,7 @@
        {
                for(sal_Int16 i = 0; i < nLength; ++i)
                {
-                       OUString sLocalName;
+                ::rtl::OUString sLocalName;
                        const rtl::OUString sAttrName = 
_xAttrList->getNameByIndex( i );
                        const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                        rtl::OUString sValue = _xAttrList->getValueByIndex( i );
@@ -184,7 +183,7 @@
 
 SvXMLImportContext* OXMLReport::CreateChildContext(
                sal_uInt16 nPrefix,
-               const OUString& rLocalName,
+               const ::rtl::OUString& rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 
_CreateChildContext(nPrefix,rLocalName,xAttrList);

File [changed]: xmlReportElement.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlReportElement.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +5 -6
-------------------
--- xmlReportElement.cxx        2007-07-09 11:56:18+0000        1.2
+++ xmlReportElement.cxx        2007-08-08 11:24:55+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlReportElement.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:18 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -68,7 +68,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star;
        using namespace report;
        using namespace uno;
@@ -76,7 +75,7 @@
 DBG_NAME( rpt_OXMLReportElement )
 
 OXMLReportElement::OXMLReportElement( ORptFilter& rImport,
-                               sal_uInt16 nPrfx, const OUString& rLName,
+                               sal_uInt16 nPrfx, const ::rtl::OUString& rLName,
                                const Reference< XAttributeList > & _xAttrList
                                ,const Reference< XReportControlModel > & 
_xComponent) :
        SvXMLImportContext( rImport, nPrfx, rLName )
@@ -94,7 +93,7 @@
        {
                for(sal_Int16 i = 0; i < nLength; ++i)
                {
-                       OUString sLocalName;
+                ::rtl::OUString sLocalName;
                        const rtl::OUString sAttrName = 
_xAttrList->getNameByIndex( i );
                        const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                        rtl::OUString sValue = _xAttrList->getValueByIndex( i );
@@ -128,7 +127,7 @@
 
 SvXMLImportContext* OXMLReportElement::CreateChildContext(
                sal_uInt16 _nPrefix,
-               const OUString& _rLocalName,
+               const ::rtl::OUString& _rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 0;

File [changed]: xmlReportElementBase.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlReportElementBase.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +5 -6
-------------------
--- xmlReportElementBase.cxx    2007-07-09 11:56:18+0000        1.2
+++ xmlReportElementBase.cxx    2007-08-08 11:24:55+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlReportElementBase.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:18 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:55 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -55,7 +55,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star;
        using namespace ::com::sun::star::report;
        using namespace ::com::sun::star::uno;
@@ -63,7 +62,7 @@
 
 OXMLReportElementBase::OXMLReportElementBase( ORptFilter& rImport
                                ,sal_uInt16 nPrfx
-                , const OUString& rLName
+                , const ::rtl::OUString& rLName
                 ,const Reference< XReportComponent > & _xComponent
                                ,OXMLTable* _pContainer) :
        SvXMLImportContext( rImport, nPrfx, rLName )
@@ -80,7 +79,7 @@
 // 
-----------------------------------------------------------------------------
 SvXMLImportContext* OXMLReportElementBase::CreateChildContext(
                sal_uInt16 nPrefix,
-               const OUString& rLocalName,
+               const ::rtl::OUString& rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 
_CreateChildContext(nPrefix,rLocalName,xAttrList);
@@ -91,7 +90,7 @@
 // 
-----------------------------------------------------------------------------
 SvXMLImportContext* OXMLReportElementBase::_CreateChildContext(
                sal_uInt16 nPrefix,
-               const OUString& rLocalName,
+               const ::rtl::OUString& rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 0;

File [changed]: xmlRow.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlRow.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +5 -6
-------------------
--- xmlRow.cxx  2007-07-09 11:56:18+0000        1.2
+++ xmlRow.cxx  2007-08-08 11:24:56+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlRow.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:18 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:56 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -77,7 +77,6 @@
 namespace rptxml
 {
     using namespace ::comphelper;
-       using namespace ::rtl;
        using namespace ::com::sun::star::uno;
        using namespace ::com::sun::star::beans;
        using namespace ::com::sun::star::xml::sax;
@@ -86,7 +85,7 @@
 
 OXMLRow::OXMLRow( ORptFilter& rImport
                                ,sal_uInt16 nPrfx
-                               ,const OUString& _sLocalName
+                               ,const ::rtl::OUString& _sLocalName
                                ,const Reference< XAttributeList > & _xAttrList
                                ,OXMLTable* _pContainer) :
        SvXMLImportContext( rImport, nPrfx, _sLocalName )
@@ -102,7 +101,7 @@
        const sal_Int16 nLength = (_xAttrList.is()) ? _xAttrList->getLength() : 
0;
        for(sal_Int16 i = 0; i < nLength; ++i)
        {
-               OUString sLocalName;
+        ::rtl::OUString sLocalName;
                const rtl::OUString sAttrName = _xAttrList->getNameByIndex( i );
                const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( 
sAttrName,&sLocalName );
                rtl::OUString sValue = _xAttrList->getValueByIndex( i );
@@ -130,7 +129,7 @@
 // 
-----------------------------------------------------------------------------
 SvXMLImportContext* OXMLRow::CreateChildContext(
                sal_uInt16 nPrefix,
-               const OUString& rLocalName,
+               const ::rtl::OUString& rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 0;

File [changed]: xmlSection.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlSection.cxx?r1=1.2&r2=1.2.10.1
Delta lines:  +4 -5
-------------------
--- xmlSection.cxx      2007-07-09 11:56:18+0000        1.2
+++ xmlSection.cxx      2007-08-08 11:24:56+0000        1.2.10.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlSection.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.10.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:18 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:56 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -86,7 +86,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::xmloff;
        using namespace ::com::sun::star;
        using namespace ::com::sun::star::uno;
@@ -104,7 +103,7 @@
 DBG_NAME( rpt_OXMLSection )
 
 OXMLSection::OXMLSection( ORptFilter& rImport,
-                               sal_uInt16 nPrfx, const OUString& _sLocalName,
+                               sal_uInt16 nPrfx, const ::rtl::OUString& 
_sLocalName,
                                const uno::Reference< xml::sax::XAttributeList 
> & _xAttrList
                                ,const uno::Reference< report::XSection >& 
_xSection
                 ,sal_Bool _bPageHeader)
@@ -157,7 +156,7 @@
 
 SvXMLImportContext* OXMLSection::CreateChildContext(
                sal_uInt16 _nPrefix,
-               const OUString& _rLocalName,
+               const ::rtl::OUString& _rLocalName,
                const uno::Reference< xml::sax::XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 0;

File [changed]: xmlStyleImport.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlStyleImport.cxx?r1=1.2&r2=1.2.10.1
Delta lines:  +14 -15
---------------------
--- xmlStyleImport.cxx  2007-07-09 11:56:18+0000        1.2
+++ xmlStyleImport.cxx  2007-08-08 11:24:56+0000        1.2.10.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlStyleImport.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.10.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:18 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:56 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -97,7 +97,6 @@
 namespace rptxml
 {
 
-using namespace ::rtl;
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::xml::sax;
@@ -133,7 +132,7 @@
 DBG_NAME( rpt_OControlStyleContext )
 
 OControlStyleContext::OControlStyleContext( ORptFilter& rImport,
-               sal_uInt16 nPrfx, const OUString& rLName,
+               sal_uInt16 nPrfx, const ::rtl::OUString& rLName,
                const Reference< XAttributeList > & xAttrList,
                SvXMLStylesContext& rStyles, sal_uInt16 nFamily, sal_Bool 
bDefaultStyle ) :
        XMLPropStyleContext( rImport, nPrfx, rLName, xAttrList, rStyles, 
nFamily, bDefaultStyle ),
@@ -200,8 +199,8 @@
 }
 // 
-----------------------------------------------------------------------------
 void OControlStyleContext::SetAttribute( sal_uInt16 nPrefixKey,
-                                                                               
const OUString& rLocalName,
-                                                                               
const OUString& rValue )
+                                                                               
const ::rtl::OUString& rLocalName,
+                                                                               
const ::rtl::OUString& rValue )
 {
        // TODO: use a map here
        if( IsXMLToken(rLocalName, XML_DATA_STYLE_NAME ) )
@@ -221,7 +220,7 @@
 
 OReportStylesContext::OReportStylesContext( ORptFilter& rImport,
                sal_uInt16 nPrfx ,
-               const OUString& rLName ,
+               const ::rtl::OUString& rLName ,
                const Reference< XAttributeList > & xAttrList,
                const sal_Bool bTempAutoStyles ) :
        SvXMLStylesContext( rImport, nPrfx, rLName, xAttrList ),
@@ -314,7 +313,7 @@
 }
 // 
-----------------------------------------------------------------------------
 SvXMLStyleContext *OReportStylesContext::CreateDefaultStyleStyleChildContext(
-               sal_uInt16 nFamily, sal_uInt16 nPrefix, const OUString& 
rLocalName,
+               sal_uInt16 nFamily, sal_uInt16 nPrefix, const ::rtl::OUString& 
rLocalName,
                const uno::Reference< xml::sax::XAttributeList > & xAttrList )
 {
        SvXMLStyleContext *pStyle = 0;
@@ -337,7 +336,7 @@
 }
 // ----------------------------------------------------------------------------
 SvXMLStyleContext *OReportStylesContext::CreateStyleStyleChildContext(
-               sal_uInt16 nFamily, sal_uInt16 nPrefix, const OUString& 
rLocalName,
+               sal_uInt16 nFamily, sal_uInt16 nPrefix, const ::rtl::OUString& 
rLocalName,
                const Reference< xml::sax::XAttributeList > & xAttrList )
 {
     SvXMLStyleContext *pStyle = 
SvXMLStylesContext::CreateStyleStyleChildContext( nFamily, nPrefix,
@@ -369,7 +368,7 @@
        Reference < XNameContainer > 
xStyles(SvXMLStylesContext::GetStylesContainer(nFamily));
        if (!xStyles.is())
        {
-               OUString sName;
+        ::rtl::OUString sName;
                switch( nFamily )
                {
                        case XML_STYLE_FAMILY_TABLE_TABLE:
@@ -378,7 +377,7 @@
                                        xStyles.set(m_xTableStyles);
                                else
                                        sName =
-                                               OUString( 
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "TableStyles" ) ));
+                                        ::rtl::OUString( 
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "TableStyles" ) ));
                        }
                        break;
                        case XML_STYLE_FAMILY_TABLE_CELL:
@@ -387,7 +386,7 @@
                                        xStyles.set(m_xCellStyles);
                                else
                                        sName =
-                                               OUString( 
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "CellStyles" ) ));
+                                        ::rtl::OUString( 
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "CellStyles" ) ));
                        }
                        break;
                        case XML_STYLE_FAMILY_TABLE_COLUMN:
@@ -396,7 +395,7 @@
                                        xStyles.set(m_xColumnStyles);
                                else
                                        sName =
-                                               OUString( 
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "ColumnStyles" ) ));
+                                        ::rtl::OUString( 
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "ColumnStyles" ) ));
                        }
                        break;
                        case XML_STYLE_FAMILY_TABLE_ROW:
@@ -405,7 +404,7 @@
                                        xStyles.set(m_xRowStyles);
                                else
                                        sName =
-                                               OUString( 
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "RowStyles" ) ));
+                                        ::rtl::OUString( 
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "RowStyles" ) ));
                        }
                        break;
             case XML_STYLE_FAMILY_SD_GRAPHICS_ID:
@@ -449,7 +448,7 @@
 }
 // 
-----------------------------------------------------------------------------
 
-OUString OReportStylesContext::GetServiceName( sal_uInt16 nFamily ) const
+::rtl::OUString OReportStylesContext::GetServiceName( sal_uInt16 nFamily ) 
const
 {
        rtl::OUString sServiceName = 
SvXMLStylesContext::GetServiceName(nFamily);
        if (!sServiceName.getLength())

File [changed]: xmlSubDocument.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlSubDocument.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +4 -5
-------------------
--- xmlSubDocument.cxx  2007-07-09 11:56:18+0000        1.2
+++ xmlSubDocument.cxx  2007-08-08 11:24:56+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlSubDocument.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:18 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:56 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -62,7 +62,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::com::sun::star;
        using namespace ::com::sun::star::report;
        using namespace ::com::sun::star::uno;
@@ -71,7 +70,7 @@
 
 OXMLSubDocument::OXMLSubDocument( ORptFilter& rImport,
                                sal_uInt16 nPrfx
-                ,const OUString& rLName
+                ,const ::rtl::OUString& rLName
                                ,const Reference< XReportDefinition > & 
_xComponent 
                 ,OXMLTable* _pContainer) :
        OXMLReportElementBase( rImport, nPrfx, 
rLName,_xComponent.get(),_pContainer)
@@ -90,7 +89,7 @@
 // 
-----------------------------------------------------------------------------
 SvXMLImportContext* OXMLSubDocument::CreateChildContext(
                sal_uInt16 _nPrefix,
-               const OUString& _rLocalName,
+               const ::rtl::OUString& _rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 
OXMLReportElementBase::CreateChildContext(_nPrefix,_rLocalName,xAttrList);

File [changed]: xmlTable.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlTable.cxx?r1=1.2&r2=1.2.10.1
Delta lines:  +4 -5
-------------------
--- xmlTable.cxx        2007-07-09 11:56:18+0000        1.2
+++ xmlTable.cxx        2007-08-08 11:24:56+0000        1.2.10.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlTable.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.10.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:18 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:56 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -88,7 +88,6 @@
 
 namespace rptxml
 {
-       using namespace ::rtl;
        using namespace ::xmloff;
        using namespace ::com::sun::star;
        using ::com::sun::star::uno::Reference;
@@ -106,7 +105,7 @@
 
 OXMLTable::OXMLTable( ORptFilter& rImport
                                ,sal_uInt16 nPrfx
-                ,const OUString& _sLocalName
+                ,const ::rtl::OUString& _sLocalName
                 ,const Reference< XAttributeList > & _xAttrList
                                ,const uno::Reference< report::XSection >& 
_xSection
                 )
@@ -175,7 +174,7 @@
 
 SvXMLImportContext* OXMLTable::CreateChildContext(
                sal_uInt16 _nPrefix,
-               const OUString& _rLocalName,
+               const ::rtl::OUString& _rLocalName,
                const Reference< XAttributeList > & xAttrList )
 {
        SvXMLImportContext *pContext = 0;

File [changed]: xmlservices.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlservices.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +2 -3
-------------------
--- xmlservices.cxx     2007-07-09 11:56:18+0000        1.2
+++ xmlservices.cxx     2007-08-08 11:24:56+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: xmlservices.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:18 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:56 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -59,7 +59,6 @@
 
 
/********************************************************************************************/
 
-using namespace ::rtl;
 using namespace ::rptxml;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;

Directory: /dba/reportdesign/source/ui/misc/
============================================

File [changed]: rptuiservices.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/reportdesign/source/ui/misc/rptuiservices.cxx?r1=1.2&r2=1.2.14.1
Delta lines:  +2 -3
-------------------
--- rptuiservices.cxx   2007-07-09 11:56:32+0000        1.2
+++ rptuiservices.cxx   2007-08-08 11:24:56+0000        1.2.14.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: rptuiservices.cxx,v $
  *
- *  $Revision: 1.2 $
+ *  $Revision: 1.2.14.1 $
  *
- *  last change: $Author: rt $ $Date: 2007/07/09 11:56:32 $
+ *  last change: $Author: oj $ $Date: 2007/08/08 11:24:56 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -54,7 +54,6 @@
 
 
/********************************************************************************************/
 
-using namespace ::rtl;
 using namespace ::rptui;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to