Tag: cws_src680_dba23c User: oj Date: 2007-07-18 06:32:07+0000 Modified: dba/dbaccess/source/core/api/resultset.cxx
Log: #147849# check bookmark a little bit more File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: resultset.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/resultset.cxx?r1=1.18&r2=1.18.114.1 Delta lines: +6 -3 ------------------- --- resultset.cxx 2006-09-17 06:36:14+0000 1.18 +++ resultset.cxx 2007-07-18 06:32:04+0000 1.18.114.1 @@ -4,9 +4,9 @@ * * $RCSfile: resultset.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.18.114.1 $ * - * last change: $Author: obo $ $Date: 2006/09/17 06:36:14 $ + * last change: $Author: oj $ $Date: 2007/07/18 06:32:04 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -128,7 +128,10 @@ { Reference <XPropertySetInfo > xInfo(xSet->getPropertySetInfo()); if (xInfo->hasPropertyByName(PROPERTY_ISBOOKMARKABLE)) + { m_bIsBookmarkable = ::comphelper::getBOOL(xSet->getPropertyValue(PROPERTY_ISBOOKMARKABLE)); + m_bIsBookmarkable = m_bIsBookmarkable && Reference< XRowLocate >(m_xDelegatorResultSet, UNO_QUERY).is(); + } } } catch(Exception&) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
