summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--new/stack.c8
-rw-r--r--new/uipriv.h1
2 files changed, 5 insertions, 4 deletions
diff --git a/new/stack.c b/new/stack.c
index 37c469a..396e9f6 100644
--- a/new/stack.c
+++ b/new/stack.c
@@ -28,10 +28,10 @@ static void stackSetParent(uiControl *c, uintptr_t parent)
S(c)->parent = parent;
for (i = 0; i < S(c)->len; i++)
- (*(S(c)->controls[i]->setParent))(S(c)->controls[i], S(c)->parent));
+ (*(S(c)->controls[i]->setParent))(S(c)->controls[i], S(c)->parent);
}
-static uiSize stackPreferredSize)(uiControl *c, uiSizing *d)
+static uiSize stackPreferredSize(uiControl *c, uiSizing *d)
{
stack *s = S(c);
int xpadding, ypadding;
@@ -85,7 +85,7 @@ static uiSize stackPreferredSize)(uiControl *c, uiSizing *d)
if (s->vertical)
size.height += nStretchy * maxsht;
else
- size.width += nStretchy * maxwid;
+ size.width += nStretchy * maxswid;
return size;
}
@@ -187,7 +187,7 @@ uiControl *uiNewVerticalStack(void)
{
uiControl *c;
- c = newHorizontalStack();
+ c = uiNewHorizontalStack();
S(c)->vertical = 1;
return c;
}
diff --git a/new/uipriv.h b/new/uipriv.h
index 4b150dd..0500f74 100644
--- a/new/uipriv.h
+++ b/new/uipriv.h
@@ -1,4 +1,5 @@
// 6 april 2015
+#include <stdlib.h>
#include "ui.h"
typedef struct uiSize uiSize;