X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dee1a63ff52bfe4da396187f8438aa1a29796737..c1aa5517acff9ce039adcd6502db2e88cdd886c7:/src/os2/treectrl.cpp?ds=inline diff --git a/src/os2/treectrl.cpp b/src/os2/treectrl.cpp index d54a567d25..da60f7a692 100644 --- a/src/os2/treectrl.cpp +++ b/src/os2/treectrl.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: src/msw/treectrl.cpp +// Name: src/os2/treectrl.cpp // Purpose: wxTreeCtrl // Author: Julian Smart // Modified by: Vadim Zeitlin to be less MSW-specific on 10.10.98 @@ -26,11 +26,14 @@ #if wxUSE_TREECTRL +#ifndef WX_PRECOMP + #include "wx/dynarray.h" +#endif + #include "wx/os2/private.h" #include "wx/app.h" #include "wx/log.h" -#include "wx/dynarray.h" #include "wx/imaglist.h" #include "wx/settings.h" #include "wx/os2/treectrl.h" @@ -492,16 +495,17 @@ void wxTreeCtrl::DoSetItem ( } } // end of wxTreeCtrl::DoSetItem -size_t wxTreeCtrl::GetCount () const +unsigned int wxTreeCtrl::GetCount () const { - CNRINFO vCnrInfo; + CNRINFO vCnrInfo; ::WinSendMsg( GetHWND() ,CM_QUERYCNRINFO ,MPFROMP(&vCnrInfo) ,(MPARAM)(USHORT)sizeof(CNRINFO) ); - return (size_t)vCnrInfo.cRecords; + + return (unsigned int)vCnrInfo.cRecords; } // end of wxTreeCtrl::GetCount unsigned int wxTreeCtrl::GetIndent () const