diff options
author | David Robillard <d@drobilla.net> | 2020-11-23 17:14:21 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-25 14:18:04 +0100 |
commit | adc925180be3a8b4a970c70c58ef6c3de6993458 (patch) | |
tree | 899a7fc130f3ac8c0630e45099df77ac7042e200 /src/implementation.c | |
parent | 7ce9b578a4433f9606b14291fb3b816aa67999d9 (diff) | |
download | pugl-adc925180be3a8b4a970c70c58ef6c3de6993458.tar.gz pugl-adc925180be3a8b4a970c70c58ef6c3de6993458.tar.bz2 pugl-adc925180be3a8b4a970c70c58ef6c3de6993458.zip |
Rename puglShowWindow and puglHideWindow to puglShow an puglHide
These names were confusing because a view is not necessarily a window. Since
there's no room for ambiguity here, simply drop the superfluous word.
Diffstat (limited to 'src/implementation.c')
-rw-r--r-- | src/implementation.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/implementation.c b/src/implementation.c index 35c4c26..23bfbde 100644 --- a/src/implementation.c +++ b/src/implementation.c @@ -289,6 +289,18 @@ puglDispatchEvents(PuglWorld* world) return puglUpdate(world, 0.0); } +PuglStatus +puglShowWindow(PuglView* view) +{ + return puglShow(view); +} + +PuglStatus +puglHideWindow(PuglView* view) +{ + return puglHide(view); +} + #endif PuglStatus |