summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fbgui.cpp1
-rw-r--r--src/javascriptinterface.cpp1
2 files changed, 1 insertions, 1 deletions
diff --git a/src/fbgui.cpp b/src/fbgui.cpp
index f6b412a..206680f 100644
--- a/src/fbgui.cpp
+++ b/src/fbgui.cpp
@@ -163,7 +163,6 @@ void fbgui::netAccessible(const QString& name)
void fbgui::watchDHCP()
{
_webView->load(QUrl("qrc:/html/loadAbout.html"));
- // TODO change directory to the right one...
qxtLog->debug() << "Watching " << fileToTriggerURL;
QStringList pathToWatch(fileToTriggerURL);
_watcher = new QFileSystemWatcher(pathToWatch, this);
diff --git a/src/javascriptinterface.cpp b/src/javascriptinterface.cpp
index c3ac80c..8261582 100644
--- a/src/javascriptinterface.cpp
+++ b/src/javascriptinterface.cpp
@@ -54,6 +54,7 @@ void JavascriptInterface::updateProgressBar(const int& percent, const double& sp
}
//-------------------------------------------------------------------------------------------------------
void JavascriptInterface::setCallbackOnDlQueueFinished(QString& jsFunction){
+ qxtLog->debug() << "Callback set: " << jsFunction;
_callBackOnDownloadsFinished = jsFunction;
}
//-------------------------------------------------------------------------------------------------------