Fix filtering out of bogus GTK critical errors in wxNotebook
Restore the correct message which was erroneously modified by the
changes of 4f4c5fcfdf (Use nullptr instead of NULL in the code and
documentation, 2022-10-16).
This commit is contained in:
parent
0efd803f30
commit
2a87515660
1 changed files with 1 additions and 1 deletions
|
|
@ -431,7 +431,7 @@ wxNotebookPage *wxNotebook::DoRemovePage( size_t page )
|
|||
// Suppress bogus assertion failures happening deep inside ATK (used by
|
||||
// GTK) that can't be avoided in any other way, see #22176.
|
||||
wxGTKImpl::LogFilterByMessage filterLog(
|
||||
"gtk_notebook_get_tab_label: assertion 'list != nullptr' failed"
|
||||
"gtk_notebook_get_tab_label: assertion 'list != NULL' failed"
|
||||
);
|
||||
|
||||
// we don't need to unparent the client->m_widget; GTK+ will do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue