1
Nightly builds / Re: The 30 December 2024 build (13600) is out.
« Last post by raynebc on Today at 04:58:17 am »Is there a way to have breakpoints preserved between C::B sessions?
The new Release 20.03 is out! You can download binaries for Windows and many major Linux distros here .
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'.");