X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/750b78ba359e7d30c7d3ad49d268923e986268cb..0492c5a094d1baac126331385d66d2f66aa5db52:/src/msw/app.cpp diff --git a/src/msw/app.cpp b/src/msw/app.cpp index 8488c2d14f..16b58ba2f9 100644 --- a/src/msw/app.cpp +++ b/src/msw/app.cpp @@ -319,8 +319,6 @@ bool wxApp::RegisterWindowClasses() // Register the panel window class. WNDCLASS wndclass2; // Structure used to register Windows class. memset(&wndclass2, 0, sizeof(WNDCLASS)); // start with NULL defaults - // Use CS_OWNDC to avoid messing about restoring the context - // for every graphic operation. wndclass2.style = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS ; wndclass2.lpfnWndProc = (WNDPROC)wxWndProc; wndclass2.cbClsExtra = 0; @@ -380,7 +378,8 @@ void wxApp::ConvertToStandardCommandArgs(char* lpCmdLine) ::GetModuleFileName(wxhInstance, name, WXSIZEOF(name)); // GNUWIN32 already fills in the first arg with the application name. -#if !defined(__GNUWIN32__) + // JACS: apparently not now (b20 and above?) +#if 0 // !defined(__GNUWIN32__) args.Add(name); count ++; #endif