summaryrefslogtreecommitdiffstats
path: root/yakuake/src/translucent_widget.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-02 08:02:59 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-02 08:02:59 +0000
commitf9a9340723a73d10f254a509c209c579efcf1c1f (patch)
tree46558a8c45f8b4f311d3f33c6c7fa376ac7a0349 /yakuake/src/translucent_widget.cpp
parent44cf1a20666f5df2d46e0c0a5fdc1e36028835cf (diff)
downloadyakuake-f9a9340723a73d10f254a509c209c579efcf1c1f.tar.gz
yakuake-f9a9340723a73d10f254a509c209c579efcf1c1f.zip
TQt4 port yakuake
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/yakuake@1239058 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'yakuake/src/translucent_widget.cpp')
-rw-r--r--yakuake/src/translucent_widget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/yakuake/src/translucent_widget.cpp b/yakuake/src/translucent_widget.cpp
index 1b67591..aa87a9d 100644
--- a/yakuake/src/translucent_widget.cpp
+++ b/yakuake/src/translucent_widget.cpp
@@ -16,7 +16,7 @@
#include <krootpixmap.h>
-TranslucentWidget::TranslucentWidget(QWidget* parent, const char* name, bool translucency) : QWidget(parent, name)
+TranslucentWidget::TranslucentWidget(TQWidget* tqparent, const char* name, bool translucency) : TQWidget(tqparent, name)
{
use_translucency = translucency;
@@ -40,5 +40,5 @@ void TranslucentWidget::slotUpdateBackground()
// This is wired up to KApplication::backgroundChanged and needed
// to kick KRootPixmap into updating the background again, which
// it likes to forget after having been moved off-screen.
- if (root_pixmap) root_pixmap->repaint(true);
+ if (root_pixmap) root_pixmap->tqrepaint(true);
}