summaryrefslogtreecommitdiff
path: root/gui/fpguicombobox.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/fpguicombobox.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/fpguicombobox.inc')
-rw-r--r--gui/fpguicombobox.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/fpguicombobox.inc b/gui/fpguicombobox.inc
index 862f7297..5eef10d8 100644
--- a/gui/fpguicombobox.inc
+++ b/gui/fpguicombobox.inc
@@ -105,16 +105,16 @@ begin
WidgetStyle := WidgetStyle + [wsCaptureMouse, wsClickable, wsOpaque];
BorderWidth := 1;
Color := clBlack;
- Name := '#ComboBoxPopup';
+ Name := '_ComboBoxPopup';
FLayout := TFBoxLayout.Create(self);
- FLayout.Name := '#VBoxLayout';
+ FLayout.Name := '_VBoxLayout';
FLayout.Orientation := Vertical;
FLayout.Spacing := 0;
InsertChild(FLayout);
FListBox := TFListBox.Create(self);
- FListBox.Name := '#Listbox';
+ FListBox.Name := '_Listbox';
FListBox.HotTrack := True;
FLayout.InsertChild(FListBox);
end;
@@ -133,7 +133,7 @@ begin
FItemIndex := -1;
ComboBoxButton := TFArrowButton.Create(Self);
- ComboBoxButton.Name := '#ComboBoxButton';
+ ComboBoxButton.Name := '_ComboBoxButton';
ComboBoxButton.Embedded := True;
ComboBoxButton.CanExpandWidth := False;
ComboBoxButton.CanExpandHeight := False;