User forums > Help
crash when copy pase in abbreviation window
MortenMacFly:
...can you try again with current debugger branch's head?
Jenna:
It was indeed debugger branch, that crashed and it's fixed now.
MortenMacFly:
--- Quote from: jens on March 01, 2012, 08:58:48 pm ---It was indeed debugger branch, that crashed and it's fixed now.
--- End quote ---
OK - I've had renamed that method in trunk and within the branch after merge the one tiny change in the old-named method got lost. The "CTRL" made me remember the only difference in CC between trunk and the debugger branch. It was working for me, because I still had this tiny bit applied in my local copy... ::)
ollydbg:
You mean:
* debugger_branch: re-implemented what got lost in codecompletion.cpp related to r7453
-------------------------------
M : /branches/wxpropgrid_debugger/src/plugins/codecompletion/codecompletion.cpp
--- Code: ---Index: branches/wxpropgrid_debugger/src/plugins/codecompletion/codecompletion.cpp
===================================================================
--- branches/wxpropgrid_debugger/src/plugins/codecompletion/codecompletion.cpp (revision 7868)
+++ branches/wxpropgrid_debugger/src/plugins/codecompletion/codecompletion.cpp (revision 7869)
@@ -2437,6 +2437,12 @@
void CodeCompletion::OnEditorTooltip(CodeBlocksEvent& event)
{
+ if (wxGetKeyState(WXK_CONTROL))
+ {
+ event.Skip();
+ return;
+ }
+
if (!IsAttached() || !m_InitDone)
{
event.Skip();
--- End code ---
This fix the crash problem in debugger branch?
Thanks.
MortenMacFly:
--- Quote from: ollydbg on March 03, 2012, 02:58:13 pm ---* debugger_branch: re-implemented what got lost in codecompletion.cpp related to r7453
[...]
This fix the crash problem in debugger branch?
--- End quote ---
Yes.
Navigation
[0] Message Index
[*] Previous page
Go to full version