mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
18 lines
285 B
C++
18 lines
285 B
C++
#include "chrset.h"
|
|
|
|
|
|
|
|
chrset::chrset()
|
|
{
|
|
CtrlLayout(*this, "Window title");
|
|
lbl1 = "řeřicha česky";
|
|
lbl2 = "Революция";
|
|
lbl3 = "∑€∂¼œđ";
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
DUMP((int)GetDefaultCharset());
|
|
SetDefaultCharset(CHARSET_UTF8);
|
|
chrset().Run();
|
|
}
|