Package: dolphin4 Version: 4:16.08.3-1 Severity: serious Tags: patch buster sid
dolphin4 is still linked with libplasma3, which has to be removed for the qtwebkit removal. Fix attached.
Description: Even with -DBUILD_plasma=false dolphin4 was still linked with libplasma Author: Adrian Bunk <b...@debian.org> --- kde-baseapps-16.08.3.orig/dolphin/src/CMakeLists.txt +++ kde-baseapps-16.08.3/dolphin/src/CMakeLists.txt @@ -135,7 +135,7 @@ if(X11_Xrender_FOUND) target_link_libraries(dolphinprivate4 ${X11_Xrender_LIB}) endif(X11_Xrender_FOUND) -target_link_libraries(dolphinprivate4 ${KDE4_PLASMA_LIBS}) +#target_link_libraries(dolphinprivate4 ${KDE4_PLASMA_LIBS}) set_target_properties(dolphinprivate4 PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} ) install(TARGETS dolphinprivate4 ${INSTALL_TARGETS_DEFAULT_ARGS}) --- kde-baseapps-16.08.3.orig/dolphin/src/views/tooltips/filemetadatatooltip.cpp +++ kde-baseapps-16.08.3/dolphin/src/views/tooltips/filemetadatatooltip.cpp @@ -41,7 +41,7 @@ #endif // For the blurred tooltip background -#include <plasma/windoweffects.h> +//#include <plasma/windoweffects.h> FileMetaDataToolTip::FileMetaDataToolTip(QWidget* parent) : QWidget(parent), @@ -174,8 +174,8 @@ void FileMetaDataToolTip::paintEvent(QPa void FileMetaDataToolTip::showEvent(QShowEvent *) { - Plasma::WindowEffects::overrideShadow(winId(), true); - Plasma::WindowEffects::enableBlurBehind(winId(), true, mask()); +// Plasma::WindowEffects::overrideShadow(winId(), true); +// Plasma::WindowEffects::enableBlurBehind(winId(), true, mask()); } #include "filemetadatatooltip.moc"