summaryrefslogtreecommitdiffstats
path: root/src/fbbrowser.cpp
diff options
context:
space:
mode:
authorJonathan Bauer2011-03-05 00:27:04 +0100
committerJonathan Bauer2011-03-05 00:27:04 +0100
commit2b0eb53de0c2e27f1950e467275f35c43d3a60f0 (patch)
tree5329332ebe3fb1bed8be0f4e6a4cc3c92e331c95 /src/fbbrowser.cpp
parentlittle things... (diff)
downloadfbgui-2b0eb53de0c2e27f1950e467275f35c43d3a60f0.tar.gz
fbgui-2b0eb53de0c2e27f1950e467275f35c43d3a60f0.tar.xz
fbgui-2b0eb53de0c2e27f1950e467275f35c43d3a60f0.zip
euhm yeah...
Diffstat (limited to 'src/fbbrowser.cpp')
-rw-r--r--src/fbbrowser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fbbrowser.cpp b/src/fbbrowser.cpp
index 6c7f642..7436c85 100644
--- a/src/fbbrowser.cpp
+++ b/src/fbbrowser.cpp
@@ -42,13 +42,13 @@ fbbrowser::fbbrowser(const QUrl & url)
qwf = view->page()->mainFrame();
jso = new JSObject(qwf);
QObject::connect(qwf, SIGNAL(javaScriptWindowObjectCleared()),
- jso, SLOT(enableJavascriptAccess()));
+ jso, SLOT(attachToDOM()));
QObject::connect(jso, SIGNAL(signalQuitAll()), this, SLOT(quit()));
// Initialize Download Manager.
dm = new DownloadManager(baseUrl);
QObject::connect(jso, SIGNAL(downloadFile(QString)), dm, SLOT(downloadFile(QString)));
- QObject::connect(dm, SIGNAL(updateProgress(int)), jso, SLOT(updateProgressSlot(int)));
+ QObject::connect(dm, SIGNAL(updateProgress(int)), jso, SLOT(updateProgress(int)));
// Remove the window decoration, form to fullscreen, central view?
this->setWindowFlags(Qt::SplashScreen);