openKeyboard is not a static member function of the class QWSServer and therefore you cannot call it like this
QWSServer::openKeyborad()//Wrong
To copy to clipboard, switch view to plain text mode
You will first need to create an object of QWSServer and then access the function using that object. Something like
wsServer.openKeyboard();
QWSServer wsServer;
wsServer.openKeyboard();
To copy to clipboard, switch view to plain text mode
Also, access to the QWSServer instance can be obtained using the global qwsServer pointer. So you can use something like
qwsServer->openKeyboard();
qwsServer->openKeyboard();
To copy to clipboard, switch view to plain text mode
Bookmarks