diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-01 19:00:24 +0200 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-01 19:00:24 +0200 |
| commit | fa2220862856936839a4023fdb6e000f3c93d86f (patch) | |
| tree | 7bf06e85490246b661c825d005551aaa76abbea3 /alf/alf.cpp | |
| parent | 3e069b70cf30a69ea2a3f71233b8f258f54284bc (diff) | |
groupbox first implementation
only classic theme for now, will do uxtheme soon
Diffstat (limited to 'alf/alf.cpp')
| -rw-r--r-- | alf/alf.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/alf/alf.cpp b/alf/alf.cpp index 25dcd21..7c0fa2a 100644 --- a/alf/alf.cpp +++ b/alf/alf.cpp @@ -50,6 +50,7 @@ ALF_Initialize(void) ALF_RegisterLabelClass(); ALF_RegisterNotebookClass(); ALF_RegisterButtonClass(); + ALF_RegisterGroupBoxClass(); ALF_Compat_BufferedPaintInit(); } @@ -75,6 +76,7 @@ ALF_UnInitialize(void) UnregisterClass(_alf_labelClass, ALF_HINSTANCE); UnregisterClass(_alf_notebookClass, ALF_HINSTANCE); UnregisterClass(_alf_buttonClass, ALF_HINSTANCE); + UnregisterClass(_alf_groupboxClass, ALF_HINSTANCE); ALF_UnloadCompatFunctions(); } |
