Committing in .

Silence OpenVMS warnings

 Modified Files:
 	wxWindows/src/motif/spinbutt.cpp
 ----------------------------------------------------------------------


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17149 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2002-09-12 13:32:49 +00:00
parent d9d3622e59
commit b2da87c316

View File

@@ -308,10 +308,16 @@ void wxSpinButton::DoMoveWindow(int x, int y, int width, int height)
void wxSpinButton::DoSetSize(int x, int y, int width, int height,
int sizeFlags)
{
#ifdef __VMS__
#pragma message disable codcauunr
#endif
if( sizeFlags & wxSIZE_USE_EXISTING && width == -1 )
width = GetSize().x;
if( sizeFlags & wxSIZE_USE_EXISTING && height == -1 )
height = GetSize().y;
#ifdef __VMS__
#pragma message enable codcauunr
#endif
wxControl::DoSetSize(x, y, width, height, 0);
}