From 49d3b775c7a488895f58124e38f67c71ee0cc2eb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 9 Sep 2003 22:20:59 +0000 Subject: [PATCH] use GetTraits(), not m_traits, in OnAssert() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23459 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/appbase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/appbase.cpp b/src/common/appbase.cpp index 0190668645..f19e5e4ce2 100644 --- a/src/common/appbase.cpp +++ b/src/common/appbase.cpp @@ -392,7 +392,7 @@ void wxAppConsole::OnAssert(const wxChar *file, const wxChar *cond, const wxChar *msg) { - ShowAssertDialog(file, line, cond, msg, m_traits); + ShowAssertDialog(file, line, cond, msg, GetTraits()); } #endif // __WXDEBUG__ -- 2.45.2