aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_local_copy_paste.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_local_copy_paste.c')
-rw-r--r--test/test_local_copy_paste.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_local_copy_paste.c b/test/test_local_copy_paste.c
index 5918418..737f193 100644
--- a/test/test_local_copy_paste.c
+++ b/test/test_local_copy_paste.c
@@ -127,8 +127,8 @@ main(int argc, char** argv)
// Set up view
app.view = puglNewView(app.world);
- puglSetClassName(app.world, "PuglTest");
- puglSetWindowTitle(app.view, "Pugl Copy/Paste Test");
+ puglSetWorldString(app.world, PUGL_CLASS_NAME, "PuglTest");
+ puglSetViewString(app.view, PUGL_WINDOW_TITLE, "Pugl Copy/Paste Test");
puglSetBackend(app.view, puglStubBackend());
puglSetHandle(app.view, &app);
puglSetEventFunc(app.view, onEvent);