BUG: eglView->setViewName("") works not if the eglView->setFrameSize(...); is called before it.

Add this source to the main.cpp and look on title name.

Works (I see the “HelloCpp” title on Windows

eglView->setViewName("HelloCpp");
eglView->setFrameSize(800, 480);

Works not: Title text is not “HelloCpp”.

eglView->setFrameSize(800, 480);
eglView->setViewName("HelloCpp");