oh, oops... convert error

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
aktlakfh1777
Posts: 17
Joined: Sun Dec 21, 2008 1:40 am

oh, oops... convert error

Post by aktlakfh1777 »

oops... i was made mistakes. sorry.
so i write it again

Code:
I can not convert 'const char' to 'const wchar_t'.

what can I do ??
Code:

const wchar_t tmpdata=NULL;
tmpdata =xml->getAttributeValue("name");
LB->setText(tmpdata);
Seven
Posts: 1034
Joined: Mon Nov 14, 2005 2:03 pm

Re: oh, oops... convert error

Post by Seven »

aktlakfh1777 wrote: core::stringc tmpdata = xml->getAttributeValue(L"name");
LB->setText(tmpdata);
Post Reply