User: kz      
Date: 05/10/05 07:45:19

Modified:
 /dba/dbaccess/source/ui/app/
  AppDetailPageHelper.cxx

Log:
 INTEGRATION: CWS intptr (1.7.106); FILE MERGED
 2005/09/13 14:50:23 kendy 1.7.106.1: #i54498#
 Introduce and use sal_IntPtr/sal_uIntPtr for ints where we have to store a 
pointer

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&r2=1.10
Delta lines:  +2 -2
-------------------
--- AppDetailPageHelper.cxx     23 Sep 2005 12:15:34 -0000      1.9
+++ AppDetailPageHelper.cxx     5 Oct 2005 14:45:14 -0000       1.10
@@ -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]

Reply via email to