From a3e8749d1c527576ef4e09f4a085d7437f8365f2 Mon Sep 17 00:00:00 2001 From: Benjamin Meyer Date: Wed, 5 Jul 2006 20:57:37 +0000 Subject: [PATCH] port from KActiveLabel -> QLabel svn path=/trunk/KDE/kdebase/workspace/; revision=558694 --- kcmkwin/kwinoptions/windows.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kcmkwin/kwinoptions/windows.cpp b/kcmkwin/kwinoptions/windows.cpp index 5b55eaa5d2..51b323036d 100644 --- a/kcmkwin/kwinoptions/windows.cpp +++ b/kcmkwin/kwinoptions/windows.cpp @@ -39,7 +39,7 @@ #include #include -#include +#include #include #include #include @@ -1244,7 +1244,7 @@ KTranslucencyConfig::KTranslucencyConfig (bool _standAlone, KConfig *_config, KI QVBoxLayout *lay = new QVBoxLayout (this); kompmgrAvailable_ = kompmgrAvailable(); if (!kompmgrAvailable_){ - KActiveLabel *label = new KActiveLabel(i18n("It seems that alpha channel support is not available.

" + QLabel *label = new QLabel(i18n("It seems that alpha channel support is not available.

" "Please make sure you have " "Xorg ≥ 6.8," " and have installed the kompmgr that came with kwin.
" @@ -1255,6 +1255,7 @@ KTranslucencyConfig::KTranslucencyConfig (bool _standAlone, KConfig *_config, KI "And if your GPU provides hardware-accelerated Xrender support (mainly nVidia cards):

" "Option \"RenderAccel\" \"true\"
" "In Section \"Device\"
"), this); + label->setOpenExternalLinks(true); lay->addWidget(label); } else