summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-08-15 09:28:01 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-08-15 09:28:01 +0000
commitad938113509afc756134a1b55c878b93b4921b6d (patch)
tree64b7ce33a364c476416ed854ad65c8e39b43cb4a /connectivity
parentd254941e74755e674bd720cd4d30235027b61af8 (diff)
INTEGRATION: CWS dba30 (1.40.68); FILE MERGED
2006/07/19 10:08:19 fs 1.40.68.5: RESYNC: (1.43-1.44); FILE MERGED 2006/04/18 13:08:34 oj 1.40.68.4: RESYNC: (1.42-1.43); FILE MERGED 2005/11/23 08:17:43 fs 1.40.68.3: RESYNC: (1.41-1.42); FILE MERGED 2005/09/28 11:34:44 fs 1.40.68.2: RESYNC: (1.40-1.41); FILE MERGED 2005/04/06 07:10:23 fs 1.40.68.1: #i46768# some assertions on the type of connection properties
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/file/FConnection.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/connectivity/source/drivers/file/FConnection.cxx b/connectivity/source/drivers/file/FConnection.cxx
index 85b5c9939831..83dd5334b4e6 100644
--- a/connectivity/source/drivers/file/FConnection.cxx
+++ b/connectivity/source/drivers/file/FConnection.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: FConnection.cxx,v $
*
- * $Revision: 1.44 $
+ * $Revision: 1.45 $
*
- * last change: $Author: hr $ $Date: 2006-06-20 01:25:05 $
+ * last change: $Author: hr $ $Date: 2006-08-15 10:28:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -176,11 +176,11 @@ void OConnection::construct(const ::rtl::OUString& url,const Sequence< PropertyV
for(;pBegin != pEnd;++pBegin)
{
if(0 == pBegin->Name.compareToAscii("Extension"))
- pBegin->Value >>= aExt;
+ OSL_VERIFY( pBegin->Value >>= aExt );
else if(0 == pBegin->Name.compareToAscii("CharSet"))
{
::rtl::OUString sIanaName;
- pBegin->Value >>= sIanaName;
+ OSL_VERIFY( pBegin->Value >>= sIanaName );
::dbtools::OCharsetMap aLookupIanaName;
::dbtools::OCharsetMap::const_iterator aLookup = aLookupIanaName.find(sIanaName, ::dbtools::OCharsetMap::IANA());
@@ -191,7 +191,7 @@ void OConnection::construct(const ::rtl::OUString& url,const Sequence< PropertyV
}
else if (0 == pBegin->Name.compareToAscii("ShowDeleted"))
{
- pBegin->Value >>= m_bShowDeleted;
+ OSL_VERIFY( pBegin->Value >>= m_bShowDeleted );
}
else if (0 == pBegin->Name.compareToAscii("EnableSQL92Check"))
{