Committing in .

OpenVMS updates

 Modified Files:
 	wxWidgets/contrib/src/deprecated/resource.cpp
 	wxWidgets/src/common/descrip.mms
 	wxWidgets/src/common/wfstream.cpp


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26992 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2004-04-28 08:00:44 +00:00
parent bc334f39ec
commit b7fafe6a1f
3 changed files with 21 additions and 5 deletions

View File

@@ -712,8 +712,14 @@ wxItemResource *wxResourceInterpretDialog(wxResourceTable& table, wxExpr *expr,
}
dialogItem->SetStyle(windowStyle);
dialogItem->SetValue1(isModal);
if (windowStyle & wxDIALOG_MODAL) // Uses style in wxWin 2
#ifdef __VMS
#pragma message disable CODCAUUNR
#endif
if (windowStyle & wxDIALOG_MODAL) // Uses style in wxWin 2
dialogItem->SetValue1(TRUE);
#ifdef __VMS
#pragma message enable CODCAUUNR
#endif
dialogItem->SetName(name);
dialogItem->SetTitle(title);