diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2008-04-22 14:12:56 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2008-04-22 14:12:56 +0000 |
commit | 7c55db02af6c2344dd9309abae79eab868e42022 (patch) | |
tree | 86fdb13a39b64b09b79a4a7769202ae0c9f568cd /connectivity/source/drivers | |
parent | 69771d5be325585bc78537f194694d505af2b916 (diff) |
INTEGRATION: CWS hr50 (1.12.74); FILE MERGED
2008/04/08 14:30:31 hr 1.12.74.1: #i86574#: fix warning (gcc-4.2.3)
Diffstat (limited to 'connectivity/source/drivers')
-rw-r--r-- | connectivity/source/drivers/evoab/LFolderList.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/connectivity/source/drivers/evoab/LFolderList.cxx b/connectivity/source/drivers/evoab/LFolderList.cxx index 22fd4eab579b..9ea5a2bf2d1c 100644 --- a/connectivity/source/drivers/evoab/LFolderList.cxx +++ b/connectivity/source/drivers/evoab/LFolderList.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: LFolderList.cxx,v $ - * $Revision: 1.14 $ + * $Revision: 1.15 $ * * This file is part of OpenOffice.org. * @@ -510,9 +510,10 @@ const ORowSetValue& OEvoabFolderList::getValue(sal_Int32 _nColumnIndex ) throw(: // ----------------------------------------------------------------------------- void OEvoabFolderList::checkIndex(sal_Int32 _nColumnIndex ) throw(::com::sun::star::sdbc::SQLException) { - if ( _nColumnIndex <= 0 || _nColumnIndex >= (sal_Int32)m_aRow->size() ) + if ( _nColumnIndex <= 0 || _nColumnIndex >= (sal_Int32)m_aRow->size() ) { // ::dbtools::throwInvalidIndexException(); ; + } } // ------------------------------------------------------------------------- ::rtl::OUString SAL_CALL OEvoabFolderList::getString( sal_Int32 _nColumnIndex ) throw(SQLException, RuntimeException) |