Weekly Updates

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16325 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2002-07-30 11:56:31 +00:00
parent 99bdcd556e
commit 5d9a356404
3 changed files with 46 additions and 23 deletions

View File

@@ -442,17 +442,19 @@ bool wxWindowOS2::Create(
// Generic OS/2 Windows have no Control Data but other classes
// that call OS2Create may have some.
//
OS2Create( (PSZ)wxCanvasClassName
,rName.c_str()
,ulCreateFlags
,rPos
,rSize
,NULL // Control Data
,dwExStyle
,TRUE // Child
);
bool bRetVal = OS2Create( (PSZ)wxCanvasClassName
,rName.c_str()
,ulCreateFlags
,rPos
,rSize
,NULL // Control Data
,dwExStyle
,TRUE // Child
);
return(TRUE);
if (bRetVal)
::WinSubclassWindow(m_hWnd, (PFNWP)wxWndProc);
return(bRetVal);
} // end of wxWindowOS2::Create
// ---------------------------------------------------------------------------