I see this commit:
https://sourceforge.net/p/codeblocks/code/12807/
I remember that we have discussed several years ago, that the F() macro is not thread safe, it uses a global variable. So, maybe we will use wxString::Format to replace F()?
I think the F() macro currently has no advantage over wxString::Format() and complicates the calls unnecesarily, forcing usage of wx_str().
The thread-safe part is one important reason to ditch it.
Also, calls to wxT() and _T() should be removed. There are a lot of code like this:
if (String[n] == wxT('P'))
that creates two temporary wxString and compares them, while this:
if (String[n] == 'P')
does a direct wxChar comparation.
Miguel Gimenez, I agree with your opinion.