diff options
| author | Jonathan Bauer | 2011-03-08 00:52:24 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2011-03-08 00:52:24 +0100 |
| commit | 70a3f18ca44b5ed3a03adbd4c90c497d3a64829e (patch) | |
| tree | bb4d77196b1fc1a187dc8d91c91eb521c13057a1 /src/fbgui.cpp | |
| parent | download directory option preparations (sysInfo: cant test compiling right no... (diff) | |
| download | fbgui-70a3f18ca44b5ed3a03adbd4c90c497d3a64829e.tar.gz fbgui-70a3f18ca44b5ed3a03adbd4c90c497d3a64829e.tar.xz fbgui-70a3f18ca44b5ed3a03adbd4c90c497d3a64829e.zip | |
misc
Diffstat (limited to 'src/fbgui.cpp')
| -rw-r--r-- | src/fbgui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fbgui.cpp b/src/fbgui.cpp index 97656f5..beb0aac 100644 --- a/src/fbgui.cpp +++ b/src/fbgui.cpp @@ -19,7 +19,7 @@ fbgui::fbgui(QApplication *parent) QWebView* webView = new QWebView(this); webView->load(baseURL); /* Connect fbb with app for killing the app from browser. */ - //QObject::connect(jso, SIGNAL(signalQuitAll()), parent, SLOT(quit())); + //QObject::connect(jso, SIGNAL(signalQuitAll()), this, SLOT(quit())); /* Init JavaScript interface */ JSObject* jso = new JSObject(webView->page()->mainFrame()); @@ -37,5 +37,5 @@ fbgui::fbgui(QApplication *parent) } void fbgui::quit(){ - //parent.quit(); + //parent->quit(); } |
