]> git.saurik.com Git - wxWidgets.git/commitdiff
Committing in .
authorJouk Jansen <joukj@hrem.nano.tudelft.nl>
Thu, 12 Sep 2002 13:32:49 +0000 (13:32 +0000)
committerJouk Jansen <joukj@hrem.nano.tudelft.nl>
Thu, 12 Sep 2002 13:32:49 +0000 (13:32 +0000)
 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

src/motif/spinbutt.cpp

index 0ffb7cd60d56fc0a9574355a4f5493666a82f5cd..ba88785d9b4e73c5a1f9d4a7c01eff72f0b3ef64 100644 (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);
 }