]> git.saurik.com Git - wxWidgets.git/commit
Fix display of "const" methods in wxGTK assert dialog.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 21 Mar 2012 00:11:12 +0000 (00:11 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 21 Mar 2012 00:11:12 +0000 (00:11 +0000)
commit8d241dea5c18414ec92776044feda4c909ec5007
tree564890af4e3bf8824dc61546ddfe1ae5b1a05b23
parent996de8322b2a9f5e77e94a49eb5a97e0b25fc1ca
Fix display of "const" methods in wxGTK assert dialog.

Don't separate the function name and its arguments types in 2 different
columns in the assert dialog, this doesn't really work with const methods as
"const" can't be separated from the function like this. The old code just
didn't take "const" into account at all and mangled all the const methods by
showing ") cons" (no typo) at the end.

Just show everything in one column to avoid the problem and also simplify the
code.

Closes #14104.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70954 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
docs/changes.txt
include/wx/gtk/assertdlg_gtk.h
src/gtk/assertdlg_gtk.cpp
src/gtk/utilsgtk.cpp