User: hr      
Date: 2006/08/15 03:28:04

Modified:
   dba/connectivity/source/drivers/file/FConnection.cxx

Log:
 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

File Changes:

Directory: /dba/connectivity/source/drivers/file/
=================================================

File [changed]: FConnection.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/file/FConnection.cxx?r1=1.44&r2=1.45
Delta lines:  +3 -3
-------------------
--- FConnection.cxx     20 Jun 2006 01:25:05 -0000      1.44
+++ FConnection.cxx     15 Aug 2006 10:28:01 -0000      1.45
@@ -176,11 +176,11 @@
        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 @@
                }
                else if (0 == pBegin->Name.compareToAscii("ShowDeleted"))
                {
-                       pBegin->Value >>= m_bShowDeleted;
+                       OSL_VERIFY( pBegin->Value >>= m_bShowDeleted );
                }
                else if (0 == pBegin->Name.compareToAscii("EnableSQL92Check"))
                {




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

Reply via email to