Hi,

A really stupid noob/newbie question I guess:
I'm trying to access back a ui component and define some parameters...
Let's take this pseudo code to highlight the issue:

{
QString a = "webview";
ui->a->setUrl(QUrl("http://www.asd....")); //<<< this will error: 'class Ui::websurf' has no member named 'a'
}

Could some one show me an example how to parse a QString variable into the ui?

Thanks in advance.