I m new to Qt. I have to display google maps in my app. I started with fancy browser. But it s not working. so I started my own example. I added QWebview headerfile and tried to load a Url. But it s not loading.. Code compiled but when executed i m getting blank page. It is not accepting http. Here is my code :

QWebView *web=new QWebView(this);
web->setGeometry(0,0,300,300);
web->setUrl(QUrl("https://google.com"));
web->showNormal();

But i m getting a blank page I checked regarding this in google and found that it s because of Proxy settings. I m not technically sound. Pls help me regarding this. I want to connect to proxy regarding this. I m using Qt4.7 n windows and MSVC compiler. Thanks in advance