From 982ea3f09aa968bd89b00f445272984cb629b346 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 22 Jul 2019 12:48:25 +0200 Subject: Add deprecation macro and deprecate puglInitResizable() --- test/pugl_cairo_test.c | 2 +- test/pugl_test.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test') 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); diff --git a/test/pugl_test.c b/test/pugl_test.c index fe1cc29..dfc06c6 100644 --- a/test/pugl_test.c +++ b/test/pugl_test.c @@ -171,8 +171,8 @@ main(int argc, char** argv) puglInitWindowSize(view, 512, 512); puglInitWindowMinSize(view, 256, 256); puglInitWindowAspectRatio(view, 1, 1, 16, 9); - puglInitResizable(view, resizable); + puglInitWindowHint(view, PUGL_RESIZABLE, resizable); puglInitWindowHint(view, PUGL_SAMPLES, samples); puglInitWindowHint(view, PUGL_DOUBLE_BUFFER, doubleBuffer); -- cgit v1.2.1