diff options
author | David Robillard <d@drobilla.net> | 2015-11-11 15:41:12 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-11-11 15:41:12 -0500 |
commit | 95a42df7a459fb089d2d55b52c7c84f2a296c0f4 (patch) | |
tree | ee94d5047914497d0322a53626d74fcd7b24e41e /pugl_test.c | |
parent | b10540d1ffddb487e8dacb6dc77d4e0d8bdf6be0 (diff) | |
download | pugl-95a42df7a459fb089d2d55b52c7c84f2a296c0f4.tar.gz pugl-95a42df7a459fb089d2d55b52c7c84f2a296c0f4.tar.bz2 pugl-95a42df7a459fb089d2d55b52c7c84f2a296c0f4.zip |
Add API to set window class name
Diffstat (limited to 'pugl_test.c')
-rw-r--r-- | pugl_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pugl_test.c b/pugl_test.c index eb192c9..b534162 100644 --- a/pugl_test.c +++ b/pugl_test.c @@ -173,6 +173,7 @@ main(int argc, char** argv) } PuglView* view = puglInit(NULL, NULL); + puglInitWindowClass(view, "PuglTest"); puglInitWindowSize(view, 512, 512); puglInitWindowMinSize(view, 256, 256); puglInitResizable(view, resizable); |