summaryrefslogtreecommitdiff
path: root/alf/alf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alf/alf.cpp')
-rw-r--r--alf/alf.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/alf/alf.cpp b/alf/alf.cpp
index 64b4cc4..6f8d28a 100644
--- a/alf/alf.cpp
+++ b/alf/alf.cpp
@@ -343,6 +343,7 @@ ALF_CreateApplication(HINSTANCE hInstance)
ALF_RegisterComboClass(app);
ALF_RegisterPanelClass(app);
+ ALF_RegisterSpacerClass(app);
return app;
}
@@ -352,6 +353,7 @@ ALF_TeardownApplication(ALFAPP app)
{
UnregisterClass(app->comboClass, app->hInstance);
UnregisterClass(app->panelClass, app->hInstance);
+ UnregisterClass(app->spacerClass, app->hInstance);
HeapFree(GetProcessHeap(), 0, app);
}