Menu

#11 OS X crash using latest SVN

open
nobody
None
5
2007-12-30
2007-12-30
Brucey
No

SetFont() appears to be called by the Mac framework during the wxFlatNotebook creation.
Since at that point m_pages doesn't exist yet, it bombs out on the line :

m_pages->m_font = ....

The workaround is to skip this if m_pages isn't set yet :

if (m_pages)
m_pages->m_font = font;

:o)

Discussion

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.