Not it's my personal classes which are not translated. I finally understood which get translated and which do not, but still havn't found the fix.
Those which get translated are the dialog instances declared as member variables of a class.
Those which do not are ths which are constructed on the heap
void MyClass::MyFunction()
{
}
void MyClass::MyFunction()
{
}
To copy to clipboard, switch view to plain text mode
Added after 5 minutes:
Not it's my personal classes which are not translated. I finally understood which get translated and which do not, but still havn't found the fix.
Those which get translated are the dialog instances declared as member variables of a class.
void MyClass::MyFunction()
{
m_dlg;//declared as a member variable
m_dlg.exec(); //shows up translated
}
void MyClass::MyFunction()
{
m_dlg;//declared as a member variable
m_dlg.exec(); //shows up translated
}
To copy to clipboard, switch view to plain text mode
Those which do not are ths which are constructed on the heap
void MyClass::MyFunction()
{
MyDialog dlg;
dlg.exec(); //shows up not translated
}
void MyClass::MyFunction()
{
MyDialog dlg;
dlg.exec(); //shows up not translated
}
To copy to clipboard, switch view to plain text mode
Any ideas ? Been stuck with this for several months now
Bookmarks