diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-06-01 10:56:58 +0200 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-06-01 10:56:58 +0200 |
| commit | f0319406c56cdaf6b91e35ef657c6570c1ebdf23 (patch) | |
| tree | 46afc203388b2969ff5e34e68e2ba5c1434c3fe4 /alf/alfcombobox.cpp | |
| parent | 960d6984b373207f1f0cbca39e458f05e623390e (diff) | |
layout code reorganization and renaming
s/Widget/Control/ throughout the code. Only the widget factory gets
to keep its name for now.
Diffstat (limited to 'alf/alfcombobox.cpp')
| -rw-r--r-- | alf/alfcombobox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alf/alfcombobox.cpp b/alf/alfcombobox.cpp index 1a7c1c2..5350a2a 100644 --- a/alf/alfcombobox.cpp +++ b/alf/alfcombobox.cpp @@ -319,7 +319,7 @@ ALF_InternalAddComboBox(HWND win, WORD id, int x, int y, DWORD style, const TCHA if (defaultText) SetWindowText(hwndCombo, defaultText); - ALF_AddWidget(win, x, y, hwndCombo, 0, 0, ALF_LAYOUT_SIZE_QUERY | ALF_LAYOUT_INHERITFONT | ALF_LAYOUT_SENDDPICHANGE); + ALF_AddControl(win, x, y, hwndCombo, 0, 0, ALF_LAYOUT_SIZE_QUERY | ALF_LAYOUT_INHERITFONT | ALF_LAYOUT_SENDDPICHANGE); return hwndCombo; } |
