]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/event.h
Simple wxBatteryPower API for the support in wxWinCE, wxPalmOS and any other mobile...
[wxWidgets.git] / include / wx / event.h
index 4e9ecf9b82fd88dcb85aa9964798905402a3eaaa..fc5cf8f04f76c69e09f8292127d37f0e202a8af5 100644 (file)
@@ -493,7 +493,7 @@ private:
 // Backwards compatibility for wxCommandEvent::m_commandString, will lead to compilation errors in some cases of usage
 class WXDLLIMPEXP_CORE wxCommandEvent;
 
-class wxCommandEventStringHelper
+class WXDLLIMPEXP_CORE wxCommandEventStringHelper
 {
 public:
     wxCommandEventStringHelper(wxCommandEvent * evt)
@@ -509,6 +509,10 @@ private:
 };
 #endif
 
+#ifdef __VISUALC__
+    // 'this' : used in base member initializer list (for m_commandString)
+    #pragma warning(disable:4355)
+#endif
 
 class WXDLLIMPEXP_CORE wxCommandEvent : public wxEvent
 {
@@ -572,6 +576,10 @@ private:
     DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCommandEvent)
 };
 
+#ifdef __VISUALC__
+    #pragma warning(default:4355)
+#endif
+
 #if WXWIN_COMPATIBILITY_2_4
 inline void wxCommandEventStringHelper::operator=(const wxString &str)
 {