]> git.saurik.com Git - wxWidgets.git/commitdiff
include/wx/choice.hpragma warning is only for VC++
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 18 Oct 1999 14:57:21 +0000 (14:57 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 18 Oct 1999 14:57:21 +0000 (14:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4052 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/tooltip.cpp

index cbe06c171143c622a398148ad0ac3c274a58fe46..458fd7626be527766c8c34c8ea525d27605def8f 100644 (file)
@@ -49,7 +49,9 @@ WXHWND wxToolTip::hwndTT = (WXHWND)NULL;
 
 
 // a simple wrapper around TOOLINFO Win32 structure
 
 
 // a simple wrapper around TOOLINFO Win32 structure
-#pragma warning( disable : 4097 )
+#ifdef __VISUALC__
+    #pragma warning( disable : 4097 )
+#endif
 class wxToolInfo : public TOOLINFO
 {
 public:
 class wxToolInfo : public TOOLINFO
 {
 public:
@@ -67,7 +69,9 @@ public:
         uId = (UINT)win->GetHWND();
     }
 };
         uId = (UINT)win->GetHWND();
     }
 };
-#pragma warning( default : 4097 )
+#ifdef __VISUALC__
+    #pragma warning( default : 4097 )
+#endif
 
 // ----------------------------------------------------------------------------
 // private functions
 
 // ----------------------------------------------------------------------------
 // private functions