summaryrefslogtreecommitdiffstats
path: root/kicker/proxy
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
commit6171b5113040c768f68b673ec0e8ae2f82c64391 (patch)
treef67c2b1d073d34517739a905e4e550ec2d675deb /kicker/proxy
parent0ec9a2e4ecb64811b592c6736bc47fadadc0e27f (diff)
downloadtdebase-6171b5113040c768f68b673ec0e8ae2f82c64391.tar.gz
tdebase-6171b5113040c768f68b673ec0e8ae2f82c64391.zip
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kicker/proxy')
-rw-r--r--kicker/proxy/appletproxy.cpp6
-rw-r--r--kicker/proxy/appletproxy.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/kicker/proxy/appletproxy.cpp b/kicker/proxy/appletproxy.cpp
index 312c78f97..7b8243777 100644
--- a/kicker/proxy/appletproxy.cpp
+++ b/kicker/proxy/appletproxy.cpp
@@ -226,7 +226,7 @@ KPanelApplet* AppletProxy::loadApplet(const AppletInfo& info)
return init_ptr(0, info.configFile());
}
-void AppletProxy::tqrepaintApplet(TQWidget* widget)
+void AppletProxy::repaintApplet(TQWidget* widget)
{
widget->tqrepaint();
@@ -243,7 +243,7 @@ void AppletProxy::tqrepaintApplet(TQWidget* widget)
TQWidget *w = dynamic_cast<TQWidget*>(*it);
if (w)
{
- tqrepaintApplet(w);
+ repaintApplet(w);
}
}
}
@@ -441,7 +441,7 @@ bool AppletProxy::process(const TQCString &fun, const TQByteArray &data,
_applet->blockSignals(true);
_applet->setBackgroundMode(TQt::FixedPixmap);
_applet->setPaletteBackgroundPixmap(_bg);
- tqrepaintApplet(_applet);
+ repaintApplet(_applet);
_applet->blockSignals(false);
}
return true;
diff --git a/kicker/proxy/appletproxy.h b/kicker/proxy/appletproxy.h
index 40ff78cc4..4c504022f 100644
--- a/kicker/proxy/appletproxy.h
+++ b/kicker/proxy/appletproxy.h
@@ -56,7 +56,7 @@ protected slots:
void slotApplicationRemoved(const TQCString&);
private:
- void tqrepaintApplet(TQWidget* widget);
+ void repaintApplet(TQWidget* widget);
AppletInfo *_info;
KPanelApplet *_applet;