summaryrefslogtreecommitdiffstats
path: root/src/netlistviewitem.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-15 15:34:17 -0600
committerTimothy Pearson <[email protected]>2011-12-15 15:34:17 -0600
commit294cdc4efac18111e879ebc5e2ca2aca1e598bbe (patch)
tree5bf144561dae36f14e8d1bb7028b89c8025f6d17 /src/netlistviewitem.h
parentf7be60da342a8a54895be7b9e81ac0b37e196e15 (diff)
downloadwlassistant-294cdc4efac18111e879ebc5e2ca2aca1e598bbe.tar.gz
wlassistant-294cdc4efac18111e879ebc5e2ca2aca1e598bbe.zip
Rename a number of old tq methods that are no longer tq specific
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 5b55f0a..b3ca41c 100644
--- a/src/netlistviewitem.h
+++ b/src/netlistviewitem.h
@@ -65,9 +65,9 @@ public:
void setChannel(const TQString& theValue)
{
- if ( mChannel != theValue ) { //tqrepaint only if difference visible in quality stars
+ if ( mChannel != theValue ) { //repaint only if difference visible in quality stars
mChannel = theValue;
- tqrepaint();
+ repaint();
}
}
@@ -111,7 +111,7 @@ public:
mHeight-=10;
}
setHeight( mHeight );
- tqrepaint();
+ repaint();
}
@@ -122,9 +122,9 @@ public:
void setQuality(const int& theValue)
{
- if ( int(mQuality/8) != int(theValue/8) ) { //tqrepaint only if difference visible in quality stars
+ if ( int(mQuality/8) != int(theValue/8) ) { //repaint only if difference visible in quality stars
mQuality = theValue;
- tqrepaint();
+ repaint();
} else
mQuality = theValue;
}
@@ -150,7 +150,7 @@ public:
private:
- virtual void paintCell (TQPainter *p, const TQColorGroup &cg, int column, int width, int tqalignment);
+ virtual void paintCell (TQPainter *p, const TQColorGroup &cg, int column, int width, int alignment);
virtual int width(const TQFontMetrics &fm, const TQListView *lv, int column) const;
virtual TQString key( int column, bool ascending ) const;