I have a qwebview in my program with the name websitecaller.
I just want to call http://google.com to that webview{websitecaller}.
The code I am using
QUrl url="http://www.google.com";
ui->websitecaller->load(url);
results in the following error
error: conversion from ‘const char [46]’ to non-scalar type ‘QUrl’ requested
How can I fix this?
Change
to