diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:40:56 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:40:56 -0600 |
commit | 6afce6c4bc7ea82d8644358216a72a585bffaf0a (patch) | |
tree | 4ace829a6b7d358d7d7a7a99b74891d211b8a3d5 /src/logviewer.cpp | |
parent | 546e1d89596af9c0bd0176fb8812bf0faa00d9de (diff) | |
download | soundkonverter-6afce6c4bc7ea82d8644358216a72a585bffaf0a.tar.gz soundkonverter-6afce6c4bc7ea82d8644358216a72a585bffaf0a.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/logviewer.cpp')
-rwxr-xr-x | src/logviewer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/logviewer.cpp b/src/logviewer.cpp index 5017a02..765acf8 100755 --- a/src/logviewer.cpp +++ b/src/logviewer.cpp @@ -31,7 +31,7 @@ LogViewerItem::LogViewerItem( LogViewerItem* parent, LogViewerItem* after, TQStr LogViewerItem::~LogViewerItem() {} -void LogViewerItem::paintCell( TQPainter *p, const TQColorGroup &cg, int column, int width, int tqalignment ) +void LogViewerItem::paintCell( TQPainter *p, const TQColorGroup &cg, int column, int width, int alignment ) { // NOTE calculate the red color @@ -40,21 +40,21 @@ void LogViewerItem::paintCell( TQPainter *p, const TQColorGroup &cg, int column, if( isSelected() && converting ) { _cg.setColor( TQColorGroup::Highlight, TQColor( 215, 62, 62 ) ); - TQListViewItem::paintCell( p, _cg, column, width, tqalignment ); + TQListViewItem::paintCell( p, _cg, column, width, alignment ); return; } else if( converting && column != listView()->sortColumn() ) { _cg.setColor( TQColorGroup::Base, TQColor( 255, 234, 234 ) ); - TQListViewItem::paintCell( p, _cg, column, width, tqalignment ); + TQListViewItem::paintCell( p, _cg, column, width, alignment ); return; } else if( converting && column == listView()->sortColumn() ) { _cg.setColor( TQColorGroup::Base, TQColor( 247, 227, 227 ) ); - TQListViewItem::paintCell( p, _cg, column, width, tqalignment ); + TQListViewItem::paintCell( p, _cg, column, width, alignment ); return; } - KListViewItem::paintCell( p, _cg, column, width, tqalignment ); + KListViewItem::paintCell( p, _cg, column, width, alignment ); } |