diff options
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 c396dad..52cbbbd 100644 --- a/test/pugl_cairo_test.c +++ b/test/pugl_cairo_test.c @@ -206,10 +206,10 @@ main(int argc, char** argv) } world = puglNewWorld(); + puglSetClassName(world, "PuglCairoTest"); PuglRect frame = { 0, 0, 512, 512 }; PuglView* view = puglNewView(world); - puglInitWindowClass(view, "PuglCairoTest"); puglSetFrame(view, frame); puglSetMinSize(view, 256, 256); puglInitWindowHint(view, PUGL_RESIZABLE, resizable); |