Comment #4 on issue 18248 by [email protected]: crash after deleting WidgetWin during event handler http://code.google.com/p/chromium/issues/detail?id=18248
Scott investigated this a bit for me. The problem is that I was deleting the widget in my destructor. This meant that Close() was never getting called. Apparently this also puts the whole event system into a fit (see previous comment). Scott speculated that perhaps there was a mouse capture that was never released (the widget was being closed/destroyed on mouse down). So I can switch this to use Close rather than CloseNow which avoids the above problems. I don't know whether it's interesting to leave this particular bug open or if this is just considered illegal use of the API. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---
