aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-12-16 20:11:47 -0500
committerDavid Robillard <d@drobilla.net>2021-12-16 20:11:47 -0500
commit7570f3d40a258511fe25f4c239d2f746c97340e0 (patch)
tree424cbf50d1a85086fe9bc56422f0148f38ab844a /src
parent461e2316ad5315777e494d3a57fd28ac1f73cda5 (diff)
downloadpugl-7570f3d40a258511fe25f4c239d2f746c97340e0.tar.gz
pugl-7570f3d40a258511fe25f4c239d2f746c97340e0.tar.bz2
pugl-7570f3d40a258511fe25f4c239d2f746c97340e0.zip
Rename puglSetTransientFor to puglSetTransientParent
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 840c602..5a10964 100644
--- a/src/mac.m
+++ b/src/mac.m
@@ -1406,7 +1406,7 @@ puglSetAspectRatio(PuglView* const view,
}
PuglStatus
-puglSetTransientFor(PuglView* view, PuglNativeView parent)
+puglSetTransientParent(PuglView* view, PuglNativeView parent)
{
view->transientParent = parent;
diff --git a/src/win.c b/src/win.c
index 32232c0..eb1d0d1 100644
--- a/src/win.c
+++ b/src/win.c
@@ -1039,7 +1039,7 @@ puglSetAspectRatio(PuglView* const view,
}
PuglStatus
-puglSetTransientFor(PuglView* view, PuglNativeView parent)
+puglSetTransientParent(PuglView* view, PuglNativeView parent)
{
if (view->parent) {
return PUGL_FAILURE;
diff --git a/src/x11.c b/src/x11.c
index 1c022e6..614b7ac 100644
--- a/src/x11.c
+++ b/src/x11.c
@@ -1375,7 +1375,7 @@ puglSetAspectRatio(PuglView* const view,
}
PuglStatus
-puglSetTransientFor(PuglView* const view, const PuglNativeView parent)
+puglSetTransientParent(PuglView* const view, const PuglNativeView parent)
{
Display* display = view->world->impl->display;