summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-05-23 08:45:01 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-05-23 08:45:01 +0000
commite29573ef760662063079065e735b2b9047a60eb7 (patch)
tree67b652fa5498ebb6f19b9632dc9fd2120207ad0f
parenta8610b85c637017462d1327301f9e8087a3d156b (diff)
downloadfpGUI-e29573ef760662063079065e735b2b9047a60eb7.tar.xz
Modified the utfdemo to show the Russion text instead.
-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;