solved this, I have fixed my app to work only in portrait, now changed it to work both ways and screenshots are fine now. Thanks
Type: Posts; User: ind111; Keyword(s):
solved this, I have fixed my app to work only in portrait, now changed it to work both ways and screenshots are fine now. Thanks
I am using the following code to take screenshot in a Nokia device using Qt
QDesktopWidget *w = QApplication::desktop();
if (w)
{
QRect r = w->screenGeometry();
...