News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

cbeditor's bug fix in bracecompletion function

Started by Loaden, March 25, 2010, 07:57:38 AM

Previous topic - Next topic

killerbot


Loaden

#16
Quote from: killerbot on March 30, 2010, 08:19:25 PM
applied
Hi, killerbot, I think it should be change to :
       #if wxCHECK_VERSION(2, 9, 0)
       if ((index != wxNOT_FOUND) && ((unWant.Find(wxUniChar(nextChar)) != wxNOT_FOUND) || (pos == control->GetLength())))
       #else
       if ((index != wxNOT_FOUND) && ((unWant.Find(nextChar) != wxNOT_FOUND) || (pos == control->GetLength())))
       #endif

What do you think?