1
General (but related to Code::Blocks) / Re: r13615 fails to compile with wxWidgets-3.3.0.0
« Last post by Miguel Gimenez on Yesterday at 04:44:58 pm »Fixed in r13616.
When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.
const wxString& wxGetTranslation ( const wxString & string,
const wxString & domain = wxEmptyString,
const wxString & context = wxEmptyString
)
static wxString RemoveCRAndTranslate(const wxString& value)
{
wxString Result(value);
Result.Replace("\r\n", "\n");
return _(Result);
}
https://wxwidgets.org/help/msgid-literals/for details.
OK, thanks, I have fixed an issue mentioned here: Re: The 14 June 2024 build (13529) is out.
BTW: why do you have so many custom comments in the source code, do you added manually or by some tools?Code// ----------------------------------------------------------------------------
void ClassBrowser::SetParser(ParserBase* parser)
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
void ClassBrowser::SetParser(ParserBase* parser)
// ----------------------------------------------------------------------------
The text in Parser::ShowGlobalChangeAnnoyingMsg() should allow translation, something like this:CodewarningMsg = _("The global settings change does not take effect\n"
"until the projects are either reloaded or reparsed.\n\n"
"You can selectively reparse projects by right clicking\n"
"on the project title in the Workspace tree and selecting\n"
"'Reparse current project'.");