diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:58:08 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:58:08 -0600 |
commit | 1de96857f5b0ed5d4a36e9486ffc8c7f8c802f98 (patch) | |
tree | e24fdc0514249de1233dd5dc07f09d07a35f4269 /kopete/libkopete/ui/kopetelistviewitem.h | |
parent | 089118c18533dfa3e6ce5065dbebdd4db94051f1 (diff) | |
download | tdenetwork-1de96857f5b0ed5d4a36e9486ffc8c7f8c802f98.tar.gz tdenetwork-1de96857f5b0ed5d4a36e9486ffc8c7f8c802f98.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kopete/libkopete/ui/kopetelistviewitem.h')
-rw-r--r-- | kopete/libkopete/ui/kopetelistviewitem.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/libkopete/ui/kopetelistviewitem.h b/kopete/libkopete/ui/kopetelistviewitem.h index 0868afab..ba4b86f7 100644 --- a/kopete/libkopete/ui/kopetelistviewitem.h +++ b/kopete/libkopete/ui/kopetelistviewitem.h @@ -44,7 +44,7 @@ public: Component *componentAt( const TQPoint &pt ); /** Repaint this item */ - virtual void tqrepaint() = 0; + virtual void repaint() = 0; /** Retqlayout this item */ virtual void retqlayout() = 0; @@ -64,7 +64,7 @@ protected: virtual void componentRemoved( Component *component ); /** A child item has been resized */ virtual void componentResized( Component *component ); - /** Remove all tqchildren */ + /** Remove all children */ virtual void clear(); /** @internal animate items */ @@ -116,11 +116,11 @@ public: /** * Paint this item, inside the rectangle returned by rect(). - * The default implementation calls paint on all tqchildren. + * The default implementation calls paint on all children. */ virtual void paint( TQPainter *painter, const TQColorGroup &cg ); - void tqrepaint(); + void repaint(); void retqlayout(); /** @@ -460,7 +460,7 @@ public: Item( TQListViewItem *parent, TQObject *owner = 0, const char *name = 0 ); ~Item(); - void tqrepaint(); + void repaint(); void retqlayout(); void setup(); |