diff options
Diffstat (limited to 'test/test_local_copy_paste.c')
-rw-r--r-- | test/test_local_copy_paste.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_local_copy_paste.c b/test/test_local_copy_paste.c index 737f193..6d4899e 100644 --- a/test/test_local_copy_paste.c +++ b/test/test_local_copy_paste.c @@ -5,10 +5,10 @@ #undef NDEBUG -#include "test_utils.h" +#include <puglutil/test_utils.h> -#include "pugl/pugl.h" -#include "pugl/stub.h" +#include <pugl/pugl.h> +#include <pugl/stub.h> #include <assert.h> #include <stdbool.h> @@ -133,7 +133,7 @@ main(int argc, char** argv) puglSetHandle(app.view, &app); puglSetEventFunc(app.view, onEvent); puglSetSizeHint(app.view, PUGL_DEFAULT_SIZE, 256, 256); - puglSetPosition(app.view, 384, 128); + puglSetPositionHint(app.view, PUGL_DEFAULT_POSITION, 384, 128); // Create and show window assert(!puglRealize(app.view)); |