diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-30 15:47:12 +0200 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-30 15:47:12 +0200 |
| commit | f9cfbb8870a023478d52fd03c90abcbed9c49304 (patch) | |
| tree | db823e58661cde8d261cc4da5add7a42372c8827 /alf/alfcontrol.cpp | |
| parent | 3939baf87d2b8776b47eff2c058fceaa351d9550 (diff) | |
remove ALF_BuildUniqueName in favor of wsprintf
Diffstat (limited to 'alf/alfcontrol.cpp')
| -rw-r--r-- | alf/alfcontrol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alf/alfcontrol.cpp b/alf/alfcontrol.cpp index a630fa7..9f1954c 100644 --- a/alf/alfcontrol.cpp +++ b/alf/alfcontrol.cpp @@ -21,7 +21,7 @@ ALF_RegisterControlClass(void) WNDCLASS cls; ZeroMemory(&cls, sizeof(cls)); - ALF_BuildUniqueName(_alf_controlClass, TEXT("ALFControl."), (ULONG_PTR)&_alf_controlClass[0]); + wsprintf(_alf_controlClass, TEXT("ALFControl.%p"), (ULONG_PTR)&_alf_controlClass[0]); cls.style = CS_DBLCLKS; cls.hInstance = ALF_HINSTANCE; |
