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:
@@ -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,
|
void wxSpinButton::DoSetSize(int x, int y, int width, int height,
|
||||||
int sizeFlags)
|
int sizeFlags)
|
||||||
{
|
{
|
||||||
|
#ifdef __VMS__
|
||||||
|
#pragma message disable codcauunr
|
||||||
|
#endif
|
||||||
if( sizeFlags & wxSIZE_USE_EXISTING && width == -1 )
|
if( sizeFlags & wxSIZE_USE_EXISTING && width == -1 )
|
||||||
width = GetSize().x;
|
width = GetSize().x;
|
||||||
if( sizeFlags & wxSIZE_USE_EXISTING && height == -1 )
|
if( sizeFlags & wxSIZE_USE_EXISTING && height == -1 )
|
||||||
height = GetSize().y;
|
height = GetSize().y;
|
||||||
|
#ifdef __VMS__
|
||||||
|
#pragma message enable codcauunr
|
||||||
|
#endif
|
||||||
|
|
||||||
wxControl::DoSetSize(x, y, width, height, 0);
|
wxControl::DoSetSize(x, y, width, height, 0);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user