Skip to content

Commit

Permalink
test: Add example unicode symbol [PERFECTIVE]
Browse files Browse the repository at this point in the history
  • Loading branch information
Janne Kulmala committed Dec 20, 2010
1 parent 7e52bbe commit 3ab66c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ class MyWindow: public Window, private ClickInterface, private IoWatchInterface,
{
public:
MyWindow() :
Window(L"Hello world"),
Window(L"Hello world \x3A9"),
m_mainbox(VERTICAL),
m_quitbutton(L"Quit"),
m_watch(0),
m_timer(1000)
{
for (int i = 0; i < 5; ++i) {
m_items[i].set_text(L"item " + format_number(i));
m_items[i].set_text(L"item \x3A9 " + format_number(i));
m_listbox.add_item(&m_items[i]);

m_buttons[i].set_label(L"label " + format_number(i));
Expand Down

0 comments on commit 3ab66c1

Please sign in to comment.