summaryrefslogtreecommitdiffstats
path: root/client/imageholder.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:41:17 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:41:17 -0600
commitcb4818cf88c6db8d0d799f38305da0fb95856053 (patch)
treef6580e34c4b714d5992f900c66f789f0917fa7ed /client/imageholder.cpp
parented6f377136e3ee497d97e76873d0869846dba888 (diff)
downloadtwin-style-crystal-cb4818cf88c6db8d0d799f38305da0fb95856053.tar.gz
twin-style-crystal-cb4818cf88c6db8d0d799f38305da0fb95856053.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'client/imageholder.cpp')
-rw-r--r--client/imageholder.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/imageholder.cpp b/client/imageholder.cpp
index b963204..8d8934f 100644
--- a/client/imageholder.cpp
+++ b/client/imageholder.cpp
@@ -83,22 +83,22 @@ void QImageHolder::Init()
rootpixmap=new KMyRootPixmap(NULL/*,this*/);
rootpixmap->start();
- rootpixmap->tqrepaint(true);
+ rootpixmap->repaint(true);
connect( rootpixmap,TQT_SIGNAL(backgroundUpdated(const TQImage*)),this, TQT_SLOT(BackgroundUpdated(const TQImage*)));
connect(kapp, TQT_SIGNAL(backgroundChanged(int)),TQT_SLOT(handleDesktopChanged(int)));
initialized=true;
}
-void QImageHolder::tqrepaint(bool force)
+void QImageHolder::repaint(bool force)
{
Init();
- if (rootpixmap)rootpixmap->tqrepaint(force);
+ if (rootpixmap)rootpixmap->repaint(force);
}
void QImageHolder::handleDesktopChanged(int)
{
- tqrepaint(true);
+ repaint(true);
}
void QImageHolder::CheckSanity()