From 7570f3d40a258511fe25f4c239d2f746c97340e0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 16 Dec 2021 20:11:47 -0500 Subject: Rename puglSetTransientFor to puglSetTransientParent --- examples/pugl_window_demo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/pugl_window_demo.c') diff --git a/examples/pugl_window_demo.c b/examples/pugl_window_demo.c index 1e38aa1..34471f0 100644 --- a/examples/pugl_window_demo.c +++ b/examples/pugl_window_demo.c @@ -222,8 +222,8 @@ main(int argc, char** argv) puglSetEventFunc(view, onEvent); if (i == 1) { - puglSetTransientFor(app.cubes[1].view, - puglGetNativeWindow(app.cubes[0].view)); + puglSetTransientParent(app.cubes[1].view, + puglGetNativeWindow(app.cubes[0].view)); } if ((st = puglRealize(view))) { -- cgit v1.2.1