summaryrefslogtreecommitdiff
path: root/gui/fpguiscrollbar.inc
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@users.sourceforge.net>2007-05-18 13:23:50 +0000
committerGraeme Geldenhuys <graemeg@users.sourceforge.net>2007-05-18 13:23:50 +0000
commita0918f9ac872f34e4781264374ce451be608742f (patch)
treeac8b90f9b377d07817bda050d411d98747555c8d /gui/fpguiscrollbar.inc
parentc9a588b70ba776903edf4d7b9d95965c3ac4ccfc (diff)
downloadfpGUI-a0918f9ac872f34e4781264374ce451be608742f.tar.xz
* Fixed a bug introduced in r100 where Forms are not displayed anymore
under Linux (X11). * Renamed all internal component names that started with a hash (#) to a underscore (_). For some reason a hash+<text> may not be used as a component name anymore. Must be a FPC 2.1.3 thing. * UTF8 support has been added to GFX/X11. This still needs some more testing, but it seems to be fine.
Diffstat (limited to 'gui/fpguiscrollbar.inc')
-rw-r--r--gui/fpguiscrollbar.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/fpguiscrollbar.inc b/gui/fpguiscrollbar.inc
index 08e1ecc8..c3dfa195 100644
--- a/gui/fpguiscrollbar.inc
+++ b/gui/fpguiscrollbar.inc
@@ -439,7 +439,7 @@ begin
FSmallChange := 1;
ButtonUp := TFScrollBarButton.Create(Self);
- ButtonUp.Name := '#ScrollBarButtonUp';
+ ButtonUp.Name := '_ScrollBarButtonUp';
TFScrollBarButton(ButtonUp).Direction := arrowLeft;
ButtonUp.Embedded := True;
ButtonUp.CanExpandWidth := False;
@@ -448,11 +448,11 @@ begin
ButtonUp.SetEmbeddedParent(Self);
Slider := TFScrollBarSlider.Create(Self);
- Slider.Name := '#ScrollBarSlider';
+ Slider.Name := '_ScrollBarSlider';
Slider.SetEmbeddedParent(Self);
ButtonDown := TFScrollBarButton.Create(Self);
- ButtonDown.Name := '#ScrollBarButtonDown';
+ ButtonDown.Name := '_ScrollBarButtonDown';
TFScrollBarButton(ButtonDown).Direction := arrowRight;
ButtonDown.Embedded := True;
ButtonDown.CanExpandWidth := False;