diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-10-01 15:26:49 +0200 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-10-01 18:17:40 +0200 |
| commit | fdb780a69d47d6438c0116a208afad2e94476e95 (patch) | |
| tree | d0c77bd94ea06be4daca07fc2298a7149e1c50e1 /alf/alfnativebtn.cpp | |
| parent | c8a5d9cc2dedf3a8573659fa70b14f86e899bac4 (diff) | |
custom button rework
Diffstat (limited to 'alf/alfnativebtn.cpp')
| -rw-r--r-- | alf/alfnativebtn.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alf/alfnativebtn.cpp b/alf/alfnativebtn.cpp index 517676d..a0f1cf3 100644 --- a/alf/alfnativebtn.cpp +++ b/alf/alfnativebtn.cpp @@ -1,7 +1,7 @@ #include "alfpriv.h" HWND -ALF_AddNativeButton(HWND win, WORD id, int x, int y, const TCHAR *text) +ALF_AddButton(HWND win, WORD id, int x, int y, const TCHAR *text) { HWND hwndBtn = CreateWindowEx(0, TEXT("BUTTON"), @@ -23,7 +23,7 @@ ALF_AddNativeButton(HWND win, WORD id, int x, int y, const TCHAR *text) } HWND -ALF_AddNativeCheckbox(HWND parent, WORD id, int x, int y, const TCHAR *text) +ALF_AddCheckbox(HWND parent, WORD id, int x, int y, const TCHAR *text) { HWND hwnd = CreateWindowEx(0, TEXT("BUTTON"), @@ -45,7 +45,7 @@ ALF_AddNativeCheckbox(HWND parent, WORD id, int x, int y, const TCHAR *text) } HWND -ALF_AddNativeRadioButton(HWND parent, WORD id, int x, int y, const TCHAR *text) +ALF_AddRadioButton(HWND parent, WORD id, int x, int y, const TCHAR *text) { HWND hwnd = CreateWindowEx(0, TEXT("BUTTON"), |
