summaryrefslogtreecommitdiff
path: root/new/control.c
diff options
context:
space:
mode:
Diffstat (limited to 'new/control.c')
-rw-r--r--new/control.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/new/control.c b/new/control.c
index c3ee677..ad03c49 100644
--- a/new/control.c
+++ b/new/control.c
@@ -1,6 +1,11 @@
// 7 april 2015
#include "uipriv.h"
+void uiControlDestroy(uiControl *c)
+{
+ (*(c->destroy))(c);
+}
+
uintptr_t uiControlHandle(uiControl *c)
{
return (*(c->handle))(c);