diff options
| author | Jonathan Bauer | 2011-03-06 12:59:46 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2011-03-06 12:59:46 +0100 |
| commit | 92e888fd6198dad031360246b47bb02de56f490c (patch) | |
| tree | d4470cef08ef1d35a76cc9775b3673d8ecf3d9ac /src/fbgui.cpp | |
| parent | fixed URL loading from cmdline (diff) | |
| download | fbgui-92e888fd6198dad031360246b47bb02de56f490c.tar.gz fbgui-92e888fd6198dad031360246b47bb02de56f490c.tar.xz fbgui-92e888fd6198dad031360246b47bb02de56f490c.zip | |
changed fbbrowser subclass
Diffstat (limited to 'src/fbgui.cpp')
| -rw-r--r-- | src/fbgui.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/fbgui.cpp b/src/fbgui.cpp index 04a6f3b..03de3b5 100644 --- a/src/fbgui.cpp +++ b/src/fbgui.cpp @@ -11,16 +11,15 @@ void fbgui::setUrl(QUrl& url) this->_url=url; } -void fbgui::start() +void fbgui::startBrowser() { _fbb = new fbbrowser(_url); QObject::connect(_fbb, SIGNAL(killApp()), this->parent(), SLOT(quit())); - _fbb->show(); + //_fbb->show(); } fbgui::fbgui() { - _fbb = NULL; _url = ""; } |
