Hi I'm writing multilanguage application in Qt5. I want to access
QApplication a(argc, argv);
localised in main.cpp from my Settings class. I need this to perform 2 commands:
a.installTranslator();
a.removeTranslattor();
when I'm trying to do do this I'm getting errors:
C2228: left of '.installTranslator' must have class/struct/union
C2228: left of '.removeTranslator' must have class/struct/union
How can I call it?