SVN commit 1214870 by aseigo: no need to link against or otherwise use the plasma kpart directly M +0 -1 CMakeLists.txt M +2 -2 kwelcomewidget.cpp M +4 -3 kwelcomewidgetprivate.cpp --- trunk/playground/libs/KWelcomeWidget/CMakeLists.txt #1214869:1214870 @@ -23,7 +23,6 @@ ${KDE4_KDEUI_LIBS} ${KDE4_PLASMA_LIBS} ${KDE4_KPARTS_LIBS} - /usr/lib/kde4/plasma-kpart.so ) install(TARGETS kwelcomewidgettestapp ${INSTALL_TARGETS_DEFAULT_ARGS}) --- trunk/playground/libs/KWelcomeWidget/kwelcomewidget.cpp #1214869:1214870 @@ -5,7 +5,7 @@ #include #include -#include +#include #include #include "recentdocuments-applet/recentappdocuments.h" @@ -133,4 +133,4 @@ void KWelcomeWidget::detach(){ d_ptr->m_overlayed->removeEventFilter(this); this->deleteLater(); -} \ No newline at end of file +} --- trunk/playground/libs/KWelcomeWidget/kwelcomewidgetprivate.cpp #1214869:1214870 @@ -2,9 +2,10 @@ #include "recentdocuments-applet/recentappdocuments.h" #include "kwelcomewidget.h" -#include +#include #include -#include +#include + #include KWelcomeWidgetPrivate::KWelcomeWidgetPrivate(KWelcomeWidget *parent) @@ -25,4 +26,4 @@ m_applet = new RecentAppDocumentsApplet(parent); qDebug() << "Criando tudo certinho"; -} \ No newline at end of file +}