aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mac.m2
-rw-r--r--src/win.c2
-rw-r--r--src/x11.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/mac.m b/src/mac.m
index ce156f5..fafade3 100644
--- a/src/mac.m
+++ b/src/mac.m
@@ -1421,7 +1421,7 @@ puglPostRedisplayRect(PuglView* view, const PuglRect rect)
}
PuglNativeView
-puglGetNativeWindow(PuglView* view)
+puglGetNativeView(PuglView* view)
{
return (PuglNativeView)view->impl->wrapperView;
}
diff --git a/src/win.c b/src/win.c
index ea64fdc..0150d67 100644
--- a/src/win.c
+++ b/src/win.c
@@ -1002,7 +1002,7 @@ puglPostRedisplayRect(PuglView* view, const PuglRect rect)
}
PuglNativeView
-puglGetNativeWindow(PuglView* view)
+puglGetNativeView(PuglView* view)
{
return (PuglNativeView)view->impl->hwnd;
}
diff --git a/src/x11.c b/src/x11.c
index 582b6f7..ac81ca8 100644
--- a/src/x11.c
+++ b/src/x11.c
@@ -1547,7 +1547,7 @@ puglPostRedisplayRect(PuglView* const view, const PuglRect rect)
}
PuglNativeView
-puglGetNativeWindow(PuglView* const view)
+puglGetNativeView(PuglView* const view)
{
return (PuglNativeView)view->impl->win;
}