Actions
Support #4403
closed
IS
Russian text
Support #4403:
Russian text
Start date:
08/19/2015
Due date:
% Done:
0%
Estimated time:
Description
Hello!
How I can write to webpage russians symbols?
i try
WContaierWidget *interface = new WContainerWidget(this->root());
...
interface->addWidget(new WText("Русский тескт <--- Russian text"));
and i see result:
?? <--- Russian text. How fix it?
WD Updated by Wim Dumon about 11 years ago
- Status changed from New to Resolved
IS Updated by ioann sys about 11 years ago
Thank you! It work for me.
I write simple function for printing text:
void print_str(WContainerWidget *widget, string text, int h = 0)
{
WText *txt_widget = new WText( WString("<h{1}>").arg(h) + WString::fromUTF8(text) + WString("</h{1}>").arg(h), widget);
return;
}
KD Updated by Koen Deforche almost 11 years ago
- Status changed from Resolved to Closed
KD Updated by Koen Deforche almost 11 years ago
- Target version set to 3.3.5
Actions