Renamed .nt makefiles to .vc and factored them out; made DND sample compile

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1462 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-01-24 19:13:55 +00:00
parent d134d2d49f
commit 48d1144bc4
127 changed files with 1123 additions and 3354 deletions

View File

@@ -20,10 +20,6 @@
#include "wx/utils.h"
#include "wx/dcclient.h"
#ifdef __WXMSW__
#include "windows.h"
#endif
#ifdef __BORLANDC__
#pragma hdrstop
#endif
@@ -40,6 +36,10 @@ END_EVENT_TABLE()
IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindow, wxWindow)
#endif
#ifdef __WXMSW__
#include "windows.h"
#endif
wxScrolledWindow::wxScrolledWindow(void)
{
m_xScrollPixelsPerLine = 0;
@@ -110,6 +110,7 @@ void wxScrolledWindow::SetScrollbars (int pixelsPerUnitX, int pixelsPerUnitY,
if (do_refresh && !noRefresh) Refresh();
#ifdef __WXMSW__
// Necessary?
UpdateWindow ((HWND) GetHWND());
#endif
}
@@ -420,6 +421,7 @@ void wxScrolledWindow::Scroll( int x_pos, int y_pos )
Refresh();
#ifdef __WXMSW__
// Necessary?
::UpdateWindow ((HWND) GetHWND());
#endif
}