diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-02-27 21:50:06 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2008-02-27 21:50:06 +0000 |
commit | 9059c000d334becd0c7b08eb50aa88ce2ca78905 (patch) | |
tree | 264853634b8a2aaf8e69d9adb2ca7b798c32ebfa /src/gui | |
parent | 3664cd44e2aadad9c06d3d1c00469f67f5e087fd (diff) | |
download | fpGUI-9059c000d334becd0c7b08eb50aa88ce2ca78905.tar.xz |
* Created two new units called: gfx_pofiles.pas and gfx_translations.pas. They are used for reading PO files and translating the resourcestrings.
* TranslateResourceStrings are now called in TfpgApplication.InternalInit().
* Added a new include file for gfx_utils unit. It's a include file for common code across platforms.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/gui_dialogs.pas | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/gui_dialogs.pas b/src/gui/gui_dialogs.pas index abe41396..308e94b5 100644 --- a/src/gui/gui_dialogs.pas +++ b/src/gui/gui_dialogs.pas @@ -707,7 +707,7 @@ begin cbBold := TfpgCheckBox.Create(self); with cbBold do begin - SetPosition(461, 32, 87, 20); + SetPosition(461, 32, 110, 20); Text := rsBold; OnChange := @OnParamChange; end; @@ -715,7 +715,7 @@ begin cbItalic := TfpgCheckBox.Create(self); with cbItalic do begin - SetPosition(461, 56, 87, 20); + SetPosition(461, 56, 110, 20); Text := rsItalic; OnChange := @OnParamChange; end; @@ -723,15 +723,15 @@ begin cbUnderline := TfpgCheckBox.Create(self); with cbUnderline do begin - SetPosition(461, 80, 87, 20); - Text := 'Underline'; + SetPosition(461, 80, 110, 20); + Text := rsUnderScore; OnChange := @OnParamChange; end; cbAntiAlias := TfpgCheckBox.Create(self); with cbAntiAlias do begin - SetPosition(461, 124, 99, 20); + SetPosition(461, 124, 110, 20); Text := 'Anti aliasing'; OnChange := @OnParamChange; Checked := True; |