summaryrefslogtreecommitdiff
path: root/reportdesign/source/filter/xml/xmlCell.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-09-26 13:20:36 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-09-26 13:20:36 +0000
commit65957bba1f3060abab08e17fef84fbf0b453886a (patch)
tree611aafe6ddcc7edf4fd354547c93ef3a1491672f /reportdesign/source/filter/xml/xmlCell.cxx
parentb90581bdcb88dc9858da0bfc156fb202f44b8023 (diff)
INTEGRATION: CWS dba24a (1.2.10); FILE MERGED
2007/08/13 05:34:28 oj 1.2.10.2: RESYNC: (1.2-1.3); FILE MERGED 2007/08/08 11:24:55 oj 1.2.10.1: #i80308# remove using rtl
Diffstat (limited to 'reportdesign/source/filter/xml/xmlCell.cxx')
-rw-r--r--reportdesign/source/filter/xml/xmlCell.cxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/reportdesign/source/filter/xml/xmlCell.cxx b/reportdesign/source/filter/xml/xmlCell.cxx
index 86e31ff7f7bd..d3f68e261a9e 100644
--- a/reportdesign/source/filter/xml/xmlCell.cxx
+++ b/reportdesign/source/filter/xml/xmlCell.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xmlCell.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2007-08-03 09:56:01 $
+ * last change: $Author: hr $ $Date: 2007-09-26 14:20:36 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -101,7 +101,6 @@
namespace rptxml
{
using namespace ::comphelper;
- using namespace ::rtl;
using namespace ::com::sun::star;
using namespace uno;
using namespace beans;
@@ -111,7 +110,7 @@ DBG_NAME( rpt_OXMLCell )
OXMLCell::OXMLCell( ORptFilter& rImport
,sal_uInt16 nPrfx
- ,const OUString& _sLocalName
+ ,const ::rtl::OUString& _sLocalName
,const Reference< XAttributeList > & _xAttrList
,OXMLTable* _pContainer
,OXMLCell* _pCell) :
@@ -132,7 +131,7 @@ OXMLCell::OXMLCell( ORptFilter& rImport
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 );
@@ -161,7 +160,7 @@ OXMLCell::~OXMLCell()
// -----------------------------------------------------------------------------
SvXMLImportContext* OXMLCell::CreateChildContext(
sal_uInt16 _nPrefix,
- const OUString& _rLocalName,
+ const ::rtl::OUString& _rLocalName,
const Reference< XAttributeList > & xAttrList )
{
SvXMLImportContext *pContext = 0;