summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/gui/utfdemo/utfdemo.lpr6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/gui/utfdemo/utfdemo.lpr b/examples/gui/utfdemo/utfdemo.lpr
index 24658bbf..92422bff 100644
--- a/examples/gui/utfdemo/utfdemo.lpr
+++ b/examples/gui/utfdemo/utfdemo.lpr
@@ -54,12 +54,14 @@ begin
InsertChild(FLayout);
TextLabel := TFLabel.Create(self);
- TextLabel.Text := 'Gráficas Magnificacion! Teste';
+// TextLabel.Text := 'Gráficas Magnificacion! Teste';
+ TextLabel.Text := 'Test Russian text -> Òåñò';
FLayout.InsertChild(TextLabel);
Edit := TFEdit.Create(self);
Edit.CanExpandWidth := True;
- Edit.Text := 'Gráficas Magnificacion! Teste';
+// Edit.Text := 'Gráficas Magnificacion! Teste';
+ Edit.Text := 'Test Russian text -> Òåñò';
FLayout.InsertChild(Edit);
end;