2002/04/30 01:47:34
[org.ibex.core.git] / src / org / xwt / plat / Win32.cc
index f3f5fd7..acc51bd 100644 (file)
@@ -53,8 +53,6 @@ LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam) {
         return (LRESULT)surface->WndProc((jint)hwnd, (jint)iMsg, (jint)wParam, (jint)lParam);
 
     } else {
-        java::lang::System::out->print(JvNewStringLatin1("miss on hwnd "));
-        java::lang::System::out->println((jint)hwnd);
         // this is really lame -- Win32 insists on being able to call your WndProc BEFORE CreateWindow returns...
         return DefWindowProc(hwnd, iMsg, wParam, lParam);
     }
@@ -745,7 +743,6 @@ jint org::xwt::plat::Win32$Win32Surface::WndProc(jint _hwnd, jint _iMsg, jint _w
         PAINTSTRUCT ps;
         BeginPaint((HWND)org::xwt::plat::Win32$Win32Surface::hwnd, &ps);
         Dirty(ps.rcPaint.left, ps.rcPaint.top, ps.rcPaint.right - ps.rcPaint.left, ps.rcPaint.bottom - ps.rcPaint.top);
-        Refresh();
         EndPaint((HWND)org::xwt::plat::Win32$Win32Surface::hwnd, &ps);
         return 0;