aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_remote_copy_paste.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_remote_copy_paste.c')
-rw-r--r--test/test_remote_copy_paste.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_remote_copy_paste.c b/test/test_remote_copy_paste.c
index cc6154e..aeba3dc 100644
--- a/test/test_remote_copy_paste.c
+++ b/test/test_remote_copy_paste.c
@@ -127,6 +127,7 @@ main(int argc, char** argv)
// Set up copier view
app.copierView = puglNewView(app.world);
puglSetClassName(app.world, "PuglTest");
+ puglSetWindowTitle(app.copierView, "Pugl Copy Test");
puglSetBackend(app.copierView, puglStubBackend());
puglSetHandle(app.copierView, &app);
puglSetEventFunc(app.copierView, onCopierEvent);
@@ -135,6 +136,7 @@ main(int argc, char** argv)
// Set up paster view
app.pasterView = puglNewView(app.world);
puglSetClassName(app.world, "PuglTest");
+ puglSetWindowTitle(app.pasterView, "Pugl Paste Test");
puglSetBackend(app.pasterView, puglStubBackend());
puglSetHandle(app.pasterView, &app);
puglSetEventFunc(app.pasterView, onPasterEvent);