I am brushing up again and I am getting an error:
Cannot call member function without object.
I am calling like:
FxString text = table.GetEntry(o
If you've written the CP_StringToPString
function, you need to declare it static
:
static void IC_Utility::CP_StringToPString( FxString& inString, FxUChar *outString)
Alternatively, if it's a function in third-party code, you need to declare an IC_Utility
object to call it on:
IC_Utility u;
u.CP_StringToPString(text, &outDescription1[0] );