summaryrefslogtreecommitdiff
path: root/src/webpage.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-09-26 00:56:41 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-09-26 00:56:41 +0200
commit8d587d4627fcf3d4c811bdd201d7cc1435a1153d (patch)
tree988535ce9d736721a11c39130c01bdd15274eccc /src/webpage.cpp
parentAccessManager fixes (diff)
downloadrekonq-8d587d4627fcf3d4c811bdd201d7cc1435a1153d.tar.xz
cookie jar fixes...
Diffstat (limited to 'src/webpage.cpp')
-rw-r--r--src/webpage.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp
index f1e5db33..942f20e3 100644
--- a/src/webpage.cpp
+++ b/src/webpage.cpp
@@ -272,8 +272,11 @@ bool WebPage::javaScriptPrompt(QWebFrame *frame, const QString &msg, const QStri
QObject *WebPage::createPlugin(const QString &classId, const QUrl &url, const QStringList &paramNames, const QStringList &paramValues)
{
- kDebug() << "create Plugin requested with classId: " << classId;
-
+ kDebug() << "create Plugin requested:";
+ kDebug() << "classid:" << classId;
+ kDebug() << "url:" << url;
+ kDebug() << "paramNames:" << paramNames << " paramValues:" << paramValues;
+
QUiLoader loader;
return loader.createWidget(classId, view());
}