summaryrefslogtreecommitdiffstats
path: root/src/netlistviewitem.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-16 09:57:54 -0600
committerTimothy Pearson <[email protected]>2011-12-16 09:57:54 -0600
commit5e82c5964c1b4dc9c8cf3f10bbb83c34f4ec7a02 (patch)
tree228cc39fe0230448cc9fb1b3dec92a46586200ed /src/netlistviewitem.h
parent294cdc4efac18111e879ebc5e2ca2aca1e598bbe (diff)
downloadwlassistant-5e82c5964c1b4dc9c8cf3f10bbb83c34f4ec7a02.tar.gz
wlassistant-5e82c5964c1b4dc9c8cf3f10bbb83c34f4ec7a02.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 294cdc4efac18111e879ebc5e2ca2aca1e598bbe.
Diffstat (limited to 'src/netlistviewitem.h')
-rw-r--r--src/netlistviewitem.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/netlistviewitem.h b/src/netlistviewitem.h
index b3ca41c..5b55f0a 100644
--- a/src/netlistviewitem.h
+++ b/src/netlistviewitem.h
@@ -65,9 +65,9 @@ public:
void setChannel(const TQString& theValue)
{
- if ( mChannel != theValue ) { //repaint only if difference visible in quality stars
+ if ( mChannel != theValue ) { //tqrepaint only if difference visible in quality stars
mChannel = theValue;
- repaint();
+ tqrepaint();
}
}
@@ -111,7 +111,7 @@ public:
mHeight-=10;
}
setHeight( mHeight );
- repaint();
+ tqrepaint();
}
@@ -122,9 +122,9 @@ public:
void setQuality(const int& theValue)
{
- if ( int(mQuality/8) != int(theValue/8) ) { //repaint only if difference visible in quality stars
+ if ( int(mQuality/8) != int(theValue/8) ) { //tqrepaint only if difference visible in quality stars
mQuality = theValue;
- repaint();
+ tqrepaint();
} else
mQuality = theValue;
}
@@ -150,7 +150,7 @@ public:
private:
- virtual void paintCell (TQPainter *p, const TQColorGroup &cg, int column, int width, int alignment);
+ virtual void paintCell (TQPainter *p, const TQColorGroup &cg, int column, int width, int tqalignment);
virtual int width(const TQFontMetrics &fm, const TQListView *lv, int column) const;
virtual TQString key( int column, bool ascending ) const;