aboutsummaryrefslogtreecommitdiffstats
path: root/src/mac.m
diff options
context:
space:
mode:
Diffstat (limited to 'src/mac.m')
-rw-r--r--src/mac.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mac.m b/src/mac.m
index 3d1fba2..6b8761f 100644
--- a/src/mac.m
+++ b/src/mac.m
@@ -1007,7 +1007,7 @@ puglRealize(PuglView* view)
}
PuglStatus
-puglShowWindow(PuglView* view)
+puglShow(PuglView* view)
{
if (![view->impl->window isVisible]) {
[view->impl->window setIsVisible:YES];
@@ -1019,7 +1019,7 @@ puglShowWindow(PuglView* view)
}
PuglStatus
-puglHideWindow(PuglView* view)
+puglHide(PuglView* view)
{
[view->impl->window setIsVisible:NO];
return PUGL_SUCCESS;