diff options
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"), |
