projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a6aa79
)
use GetTraits(), not m_traits, in OnAssert()
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Tue, 9 Sep 2003 22:20:59 +0000
(22:20 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Tue, 9 Sep 2003 22:20:59 +0000
(22:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23459
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/common/appbase.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/common/appbase.cpp
b/src/common/appbase.cpp
index 01906686456fae12f5c4de9ccf067cf6c40a9191..f19e5e4ce206e21bd243d8b98fd4f2130df252fa 100644
(file)
--- 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__