Okay, it's been a long time since I've programmed in C++! Languages change considerably in the last 5 years or so. In reviewing some source code I often see statements like this:
wxString label;
if (name == wxT("Undo")) {
label = _("Undo");
obviously, I snipped out a lot of code.
My question is, what does the underscore mean in:
_("Undo")