From: Chris Elliott Date: Thu, 15 Dec 2005 15:07:36 +0000 (+0000) Subject: fix Borland bug http://news.gmane.org/find-root.php?message_id=%3c43A0B07F.8010204... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e795e8b56f213f97745636a017609091746894a0 fix Borland bug http://news.gmane.org/find-root.php?message_id=%3c43A0B07F.8010204%40as.ro%3e git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36399 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 88f2202250..eeebee20c1 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -848,15 +848,10 @@ inline int GetScrollPosition(HWND hWnd, int wOrient) WinStruct scrollInfo; scrollInfo.cbSize = sizeof(SCROLLINFO); scrollInfo.fMask = SIF_POS; - if ( !::GetScrollInfo(hWnd, - wOrient, - &scrollInfo) ) - { - // Not necessarily an error, if there are no scrollbars yet. - // wxLogLastError(_T("GetScrollInfo")); - } + ::GetScrollInfo(hWnd, wOrient, &scrollInfo ); + return scrollInfo.nPos; -// return ::GetScrollPos(hWnd, wOrient); + #endif }