summaryrefslogtreecommitdiffstats
path: root/src/fbgui.h
diff options
context:
space:
mode:
authorJonathan Bauer2011-03-06 12:38:47 +0100
committerJonathan Bauer2011-03-06 12:38:47 +0100
commit4c130760d46a0e06e867447a39440596e215015c (patch)
tree7b55e2c6d8fd3cc541571748d46a522b9e87e37b /src/fbgui.h
parentmain.cpp added (diff)
downloadfbgui-4c130760d46a0e06e867447a39440596e215015c.tar.gz
fbgui-4c130760d46a0e06e867447a39440596e215015c.tar.xz
fbgui-4c130760d46a0e06e867447a39440596e215015c.zip
fixed URL loading from cmdline
Diffstat (limited to 'src/fbgui.h')
-rw-r--r--src/fbgui.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/fbgui.h b/src/fbgui.h
index 1345812..852ef2a 100644
--- a/src/fbgui.h
+++ b/src/fbgui.h
@@ -10,11 +10,13 @@ class fbgui : public QObject
Q_OBJECT
public:
- fbgui(QApplication *parent);
+ fbgui();
~fbgui();
+ void setUrl(QUrl &url);
+ void start();
private:
- fbbrowser* fbb;
+ fbbrowser* _fbb;
QUrl _url;
};