aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/detail/mac.m
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-04-01 19:36:01 +0200
committerDavid Robillard <d@drobilla.net>2020-04-01 19:41:37 +0200
commit00e0a5f2ce568f56cbfebed1a7eef4ced5ef09eb (patch)
treebc0b4601e79da7fe97635e76d1ccaab0f7154a85 /pugl/detail/mac.m
parent5988b8bc72bfe3fc93f5fb434354ee122c7d941b (diff)
downloadpugl-00e0a5f2ce568f56cbfebed1a7eef4ced5ef09eb.tar.gz
pugl-00e0a5f2ce568f56cbfebed1a7eef4ced5ef09eb.tar.bz2
pugl-00e0a5f2ce568f56cbfebed1a7eef4ced5ef09eb.zip
Consistently use "view" terminology in API
The sloppy use of "window" caused quite a bit of confusion, since views only correspond to top-level windows in some cases, and on MacOS, a non-top-level view is not a "window" at all.
Diffstat (limited to 'pugl/detail/mac.m')
-rw-r--r--pugl/detail/mac.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/pugl/detail/mac.m b/pugl/detail/mac.m
index 43dca9e..c495ee4 100644
--- a/pugl/detail/mac.m
+++ b/pugl/detail/mac.m
@@ -1072,10 +1072,10 @@ puglPostRedisplayRect(PuglView* view, const PuglRect rect)
return PUGL_SUCCESS;
}
-PuglNativeWindow
+PuglNativeView
puglGetNativeWindow(PuglView* view)
{
- return (PuglNativeWindow)view->impl->wrapperView;
+ return (PuglNativeView)view->impl->wrapperView;
}
PuglStatus