User: rt Date: 2008-06-06 13:20:02+0000 Modified: dba/connectivity/source/drivers/ado/AStatement.cxx
Log: INTEGRATION: CWS dba30c (1.28.10); FILE MERGED 2008/04/28 06:15:36 oj 1.28.10.1: #i88768# add using std File Changes: Directory: /dba/connectivity/source/drivers/ado/ ================================================ File [changed]: AStatement.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/ado/AStatement.cxx?r1=1.28&r2=1.29 Delta lines: +2 -2 ------------------- --- AStatement.cxx 2008-04-10 08:24:22+0000 1.28 +++ AStatement.cxx 2008-06-06 13:19:59+0000 1.29 @@ -61,7 +61,7 @@ using namespace com::sun::star::lang; using namespace com::sun::star::beans; using namespace com::sun::star::sdbc; - +using namespace ::std; //------------------------------------------------------------------------------ OStatement_Base::OStatement_Base(OConnection* _pConnection ) : OStatement_BASE(m_aMutex) ,OPropertySetHelper(OStatement_BASE::rBHelper) @@ -224,7 +224,7 @@ sal_Int32 prec = -1; OTypeInfo aInfo; aInfo.nType = (sal_Int16)sqlType; - if (m_aTypeInfo.size()) + if (!m_aTypeInfo.empty()) { ::std::vector<OTypeInfo>::const_iterator aIter = ::std::find(m_aTypeInfo.begin(),m_aTypeInfo.end(),aInfo); for(;aIter != m_aTypeInfo.end();++aIter) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
