Ticket #10371 (closed defect: fixed)
auidemo crashes when undocking toolbars
| Reported by: | ksinger2 | Owned by: | biwillia76 |
|---|---|---|---|
| Priority: | blocker | Milestone: | 2.9.0 |
| Component: | wxAui | Version: | 2.9-svn |
| Keywords: | bugfix | Cc: | net147@… |
| Blocked By: | Patch: | yes | |
| Blocking: |
Description
auidemo crashes when undocking toolbars with svn checkout of 58061.
os: vista
msvc9
reason pane.frame is null pointer!
bugfix:
..\..\src\aui\framemanager.cpp
line 3520: wxPoint frame_pos = pane.frame->GetPosition();
replace by:
wxPoint frame_pos(0,0);
if(pane.frame) frame_pos= pane.frame->GetPosition();
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

