diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp index 3143ebb2..c18a1e23 100644 --- a/sleepyhead/daily.cpp +++ b/sleepyhead/daily.cpp @@ -17,7 +17,6 @@ #include #include #include -#include #include //#include @@ -702,19 +701,12 @@ QObject *MyWebPage::createPlugin(const QString &classid, const QUrl &url, const { Q_UNUSED(paramNames) Q_UNUSED(paramValues) - // Create the widget using QUiLoader. - // This means that the widgets don't need to be registered - // with the meta object system. - // On the other hand, non-gui objects can't be created this - // way. When we'd like to create non-visual objects in - // Html to use them via JavaScript, we'd use a different - // mechanism than this. + if (classid=="SessionBar") { return mainwin->getDaily()->sessionBar(); } - QUiLoader loader; -// int i=5; - return loader.createWidget(classid, view()); + qDebug() << "Request for unknown MyWebPage plugin"; + return new QWidget(); } MyWebView::MyWebView(QWidget *parent): diff --git a/sleepyhead/sleepyhead.pro b/sleepyhead/sleepyhead.pro index bbbcf219..0055a482 100644 --- a/sleepyhead/sleepyhead.pro +++ b/sleepyhead/sleepyhead.pro @@ -4,7 +4,7 @@ # #------------------------------------------------- -QT += core gui opengl network xml uitools +QT += core gui opengl network xml greaterThan(QT_MAJOR_VERSION,4) { QT += widgets webkitwidgets