Tag: cws_src680_oj14 User: oj Date: 06/01/03 05:18:45 Modified: /dba/dbaccess/source/ui/app/ AppDetailPageHelper.cxx
Log: RESYNC: (1.9-1.10); FILE MERGED File Changes: Directory: /dba/dbaccess/source/ui/app/ ======================================= File [changed]: AppDetailPageHelper.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/app/AppDetailPageHelper.cxx?r1=1.9.4.1&r2=1.9.4.2 Delta lines: +5 -5 ------------------- --- AppDetailPageHelper.cxx 3 Jan 2006 07:48:58 -0000 1.9.4.1 +++ AppDetailPageHelper.cxx 3 Jan 2006 13:18:42 -0000 1.9.4.2 @@ -516,7 +516,7 @@ if ( nPos < CONTROL_COUNT && _pEntry ) { DBTreeListBox& rTree = *m_pLists[nPos]; - bLeafSelected = reinterpret_cast<sal_Int32>(_pEntry->GetUserData()) != FOLDER_TYPE; + bLeafSelected = reinterpret_cast<sal_IntPtr>(_pEntry->GetUserData()) != FOLDER_TYPE; } return bLeafSelected; } @@ -531,7 +531,7 @@ SvLBoxEntry* pEntry = rTree.FirstSelected( ); while( !bLeafSelected && pEntry ) { - bLeafSelected = reinterpret_cast<sal_Int32>(pEntry->GetUserData()) != FOLDER_TYPE; + bLeafSelected = reinterpret_cast<sal_IntPtr>(pEntry->GetUserData()) != FOLDER_TYPE; pEntry = rTree.NextSelected(pEntry); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
