i try to make a qt project using irrlicht engine now
i want to ask about converting string from irrlicht to qt
if irrlicht declation string is like this :
Code: Select all
core::stringw MessageText;
MessageText = "Test Message";
and qt declation string is like this:
Code: Select all
QString str;
Code: Select all
str = MessageText;
and got this error..
Error 41 error C2664: 'QLineEdit::setText' : cannot convert parameter 1 from 'irr::core::stringw' to 'const QString &'
any solution?
i am apologize if my question is very naive or other...
because i am a beginner...
Regard's
Yanto Chen