Committing in .

OpenVMS : supress warnings on unreacheable code

 Modified Files:
 	wxWidgets/src/motif/dialog.cpp
 ----------------------------------------------------------------------


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27003 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2004-04-29 07:42:39 +00:00
parent 30e0b1c972
commit 5f9a153ce1

View File

@@ -194,6 +194,9 @@ bool wxDialog::DoCreate( wxWindow* parent, wxWindowID id,
void wxDialog::SetModal(bool flag)
{
#ifdef __VMS
#pragma message disable codcauunr
#endif
if ( flag )
m_windowStyle |= wxDIALOG_MODAL ;
else
@@ -203,6 +206,9 @@ void wxDialog::SetModal(bool flag)
wxModelessWindows.DeleteObject(this);
if (!flag)
wxModelessWindows.Append(this);
#ifdef __VMS
#pragma message enable codcauunr
#endif
}
wxDialog::~wxDialog()