diff options
author | David Robillard <d@drobilla.net> | 2019-07-22 12:48:25 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-07-29 01:59:11 +0200 |
commit | 982ea3f09aa968bd89b00f445272984cb629b346 (patch) | |
tree | eb36abf0c2db8585d84badf8773dcc0b97060245 /test/pugl_cairo_test.c | |
parent | e23890324d169d03868855a3e265ab4e3cd43745 (diff) | |
download | pugl-982ea3f09aa968bd89b00f445272984cb629b346.tar.gz pugl-982ea3f09aa968bd89b00f445272984cb629b346.tar.bz2 pugl-982ea3f09aa968bd89b00f445272984cb629b346.zip |
Add deprecation macro and deprecate puglInitResizable()
Diffstat (limited to 'test/pugl_cairo_test.c')
-rw-r--r-- | test/pugl_cairo_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pugl_cairo_test.c b/test/pugl_cairo_test.c index d749485..ba1dad3 100644 --- a/test/pugl_cairo_test.c +++ b/test/pugl_cairo_test.c @@ -184,7 +184,7 @@ main(int argc, char** argv) puglInitWindowClass(view, "PuglCairoTest"); puglInitWindowSize(view, 512, 512); puglInitWindowMinSize(view, 256, 256); - puglInitResizable(view, resizable); + puglInitWindowHint(view, PUGL_RESIZABLE, resizable); puglInitContextType(view, PUGL_CAIRO); puglIgnoreKeyRepeat(view, ignoreKeyRepeat); |