diff options
author | David Robillard <d@drobilla.net> | 2021-12-16 20:11:47 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-12-16 20:11:47 -0500 |
commit | 7570f3d40a258511fe25f4c239d2f746c97340e0 (patch) | |
tree | 424cbf50d1a85086fe9bc56422f0148f38ab844a /bindings | |
parent | 461e2316ad5315777e494d3a57fd28ac1f73cda5 (diff) | |
download | pugl-7570f3d40a258511fe25f4c239d2f746c97340e0.tar.gz pugl-7570f3d40a258511fe25f4c239d2f746c97340e0.tar.bz2 pugl-7570f3d40a258511fe25f4c239d2f746c97340e0.zip |
Rename puglSetTransientFor to puglSetTransientParent
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/cpp/include/pugl/pugl.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bindings/cpp/include/pugl/pugl.hpp b/bindings/cpp/include/pugl/pugl.hpp index 85643ad..397aad0 100644 --- a/bindings/cpp/include/pugl/pugl.hpp +++ b/bindings/cpp/include/pugl/pugl.hpp @@ -515,10 +515,10 @@ public: return static_cast<Status>(puglSetParentWindow(cobj(), parent)); } - /// @copydoc puglSetTransientFor - Status setTransientFor(NativeView parent) noexcept + /// @copydoc puglSetTransientParent + Status setTransientParent(NativeView parent) noexcept { - return static_cast<Status>(puglSetTransientFor(cobj(), parent)); + return static_cast<Status>(puglSetTransientParent(cobj(), parent)); } /// @copydoc puglRealize |