summaryrefslogtreecommitdiff
path: root/new/newcontrol_windows.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-12 22:57:05 -0400
committerPietro Gagliardi <[email protected]>2015-04-12 22:57:05 -0400
commit95309affc06c3a40e5bb2b67d489161b5779aec9 (patch)
tree815f02b341522cf1c2c95edfc3bf874dafb1f7ee /new/newcontrol_windows.c
parent365e61dad21a240a82126938d7df179489e8bcc6 (diff)
Fixed build issues. Now to fix runtime issues...
Diffstat (limited to 'new/newcontrol_windows.c')
-rw-r--r--new/newcontrol_windows.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/new/newcontrol_windows.c b/new/newcontrol_windows.c
index 4d61832..b4e5d0e 100644
--- a/new/newcontrol_windows.c
+++ b/new/newcontrol_windows.c
@@ -78,7 +78,7 @@ static void singleShow(uiControl *c)
if (!s->containerHid) {
ShowWindow(s->hwnd, SW_SHOW);
if (s->parent != NULL)
- uiUpdateParent(s->parent);
+ uiParentUpdate(s->parent);
}
}
@@ -89,7 +89,7 @@ static void singleHide(uiControl *c)
s->userHid = TRUE;
ShowWindow(s->hwnd, SW_HIDE);
if (s->parent != NULL)
- uiUpdateParent(s->parent);
+ uiParentUpdate(s->parent);
}
static void singleContainerShow(uiControl *c)
@@ -100,7 +100,7 @@ static void singleContainerShow(uiControl *c)
if (!s->userHid) {
ShowWindow(s->hwnd, SW_SHOW);
if (s->parent != NULL)
- uiUpdateParent(s->parent);
+ uiParentUpdate(s->parent);
}
}
@@ -111,7 +111,7 @@ static void singleContainerHide(uiControl *c)
s->containerHid = TRUE;
ShowWindow(s->hwnd, SW_HIDE);
if (s->parent != NULL)
- uiUpdateParent(s->parent);
+ uiParentUpdate(s->parent);
}
static void singleEnable(uiControl *c)