And fixed up loose ends preventing a build. Let's build!
This commit is contained in:
parent
5535c43bd8
commit
9661d14262
|
@ -1,13 +1,15 @@
|
|||
# 3 june 2016
|
||||
|
||||
list(APPEND _LIBUI_SOURCES
|
||||
common/attribute.c
|
||||
common/attrlist.c
|
||||
common/attrstr.c
|
||||
common/areaevents.c
|
||||
common/control.c
|
||||
common/debug.c
|
||||
common/drawtext.c
|
||||
# common/drawtext.c
|
||||
common/matrix.c
|
||||
common/opentype.c
|
||||
common/shouldquit.c
|
||||
common/userbugs.c
|
||||
common/utf.c
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
// 19 february 2018
|
||||
|
||||
// TODO remove when done migrating these functions
|
||||
#define uiprivNew(x) uiNew(x)
|
||||
#define uiprivAlloc(x, y) uiAlloc(x, y)
|
||||
#define uiprivRealloc(x, y) uiRealloc(x, y)
|
||||
#define uiprivFree(x) uiFree(x)
|
||||
|
||||
// attribute.c
|
||||
extern uiAttribute *uiprivAttributeRetain(uiAttribute *a);
|
||||
extern void uiprivAttributeRelease(uiAttribute *a);
|
||||
|
|
Loading…
Reference in New Issue