summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-12-13 11:03:41 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-12-13 11:03:41 +0000
commit7f052f9bee4870e1bdd03deeb36843156c0b62f2 (patch)
tree19dc07c03fbbf668245b9f3e1fb638586572b0a7 /connectivity
parent384aa7a1d5394d018780bcc8140f7e667e74d8ed (diff)
INTEGRATION: CWS ineturl1 (1.46.4); FILE MERGED
2004/09/30 17:35:38 cmc 1.46.4.1: #i34006# modify INetURLObject to use rtl::OUString and rtl::OUStringBuffer
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/flat/ETable.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/connectivity/source/drivers/flat/ETable.cxx b/connectivity/source/drivers/flat/ETable.cxx
index 9b25548e4d28..ac4264eca1a7 100644
--- a/connectivity/source/drivers/flat/ETable.cxx
+++ b/connectivity/source/drivers/flat/ETable.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ETable.cxx,v $
*
- * $Revision: 1.46 $
+ * $Revision: 1.47 $
*
- * last change: $Author: rt $ $Date: 2004-09-08 16:21:22 $
+ * last change: $Author: hr $ $Date: 2004-12-13 12:03:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -419,11 +419,9 @@ void OFlatTable::construct()
INetURLObject aURL;
aURL.SetURL(getEntry());
- if(aURL.getExtension() != m_pConnection->getExtension())
+ if(aURL.getExtension() != rtl::OUString(m_pConnection->getExtension()))
aURL.setExtension(m_pConnection->getExtension());
- // Content aContent(aURL.GetMainURL());
-
String aFileName = aURL.GetMainURL(INetURLObject::NO_DECODE);
m_pFileStream = createStream_simpleError( aFileName,STREAM_READWRITE | STREAM_NOCREATE | STREAM_SHARE_DENYWRITE);