git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10982
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
class WXDLLEXPORT wxLogPassThrough : public wxLogChain
{
public:
- wxLogPassThrough() : wxLogChain(this) { }
+ wxLogPassThrough();
};
// ----------------------------------------------------------------------------
}
}
+// ----------------------------------------------------------------------------
+// wxLogPassThrough
+// ----------------------------------------------------------------------------
+
+#ifdef __VISUALC__
+ // "'this' : used in base member initializer list" - so what?
+ #pragma warning(disable:4355)
+#endif // VC++
+
+wxLogPassThrough::wxLogPassThrough()
+ : wxLogChain(this)
+{
+}
+
+#ifdef __VISUALC__
+ #pragma warning(default:4355)
+#endif // VC++
+
// ============================================================================
// Global functions/variables
// ============================================================================