Author Topic: cbeditor's bug fix in bracecompletion function  (Read 13141 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5529
Re: cbeditor's bug fix in bracecompletion function
« Reply #15 on: March 30, 2010, 08:19:25 pm »
applied

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: cbeditor's bug fix in bracecompletion function
« Reply #16 on: April 21, 2010, 05:41:56 am »
applied
Hi, killerbot, I think it should be change to :
Code
        #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?
« Last Edit: April 21, 2010, 05:52:21 am by Loaden »