include/wx/choice.hpragma warning is only for VC++

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4052 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-10-18 14:57:21 +00:00
parent 3f1c6a14cb
commit 26b8332978

View 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 class wxToolInfo : public TOOLINFO
{ {
public: 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