diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/cdopener.cpp | 8 | ||||
-rwxr-xr-x | src/combobutton.cpp | 8 | ||||
-rwxr-xr-x | src/combobutton.h | 2 | ||||
-rwxr-xr-x | src/filelist.cpp | 8 |
4 files changed, 13 insertions, 13 deletions
diff --git a/src/cdopener.cpp b/src/cdopener.cpp index 7737638..1518e2b 100755 --- a/src/cdopener.cpp +++ b/src/cdopener.cpp @@ -343,7 +343,7 @@ void CDOpener::trackUpPressed() if( item != 0 ) { item->setSelected( true ); - trackList->tqrepaintItem( item ); + trackList->repaintItem( item ); trackList->ensureItemVisible( item ); } else { @@ -352,7 +352,7 @@ void CDOpener::trackUpPressed() for( TQValueList<TQListViewItem*>::Iterator it = selectedItems.begin(); it != selectedItems.end(); ++it ) { (*it)->setSelected( false ); - trackList->tqrepaintItem( *it ); + trackList->repaintItem( *it ); } if( item->itemAbove() == 0 ) { @@ -370,7 +370,7 @@ void CDOpener::trackDownPressed() if( item != 0 ) { item->setSelected( true ); - trackList->tqrepaintItem( item ); + trackList->repaintItem( item ); trackList->ensureItemVisible( item ); } else { @@ -379,7 +379,7 @@ void CDOpener::trackDownPressed() for( TQValueList<TQListViewItem*>::Iterator it = selectedItems.begin(); it != selectedItems.end(); ++it ) { (*it)->setSelected( false ); - trackList->tqrepaintItem( *it ); + trackList->repaintItem( *it ); } pTrackUp->setEnabled( true ); diff --git a/src/combobutton.cpp b/src/combobutton.cpp index edf4780..64a84d7 100755 --- a/src/combobutton.cpp +++ b/src/combobutton.cpp @@ -53,7 +53,7 @@ void ComboButton::balanceSize() m_button->setFixedSize( width, height+m_increaseHeight ); } -void ComboButton::tqrepaintButton() +void ComboButton::repaintButton() { m_button->setText( m_box->currentText() ); if(m_box->pixmap( m_box->currentItem()) ) @@ -64,13 +64,13 @@ void ComboButton::tqrepaintButton() void ComboButton::insertItem( const TQString &text, int index ) { m_box->insertItem( text, index ); - tqrepaintButton(); + repaintButton(); } void ComboButton::insertItem( const TQPixmap &pixmap, const TQString &text, int index ) { m_box->insertItem( pixmap, text, index ); - tqrepaintButton(); + repaintButton(); } void ComboButton::increaseHeight( int height ) @@ -81,7 +81,7 @@ void ComboButton::increaseHeight( int height ) void ComboButton::boxActivated( int index ) { - tqrepaintButton(); + repaintButton(); emit clicked( index ); } diff --git a/src/combobutton.h b/src/combobutton.h index f7c0d41..73d87d3 100755 --- a/src/combobutton.h +++ b/src/combobutton.h @@ -84,7 +84,7 @@ private: /** Recalculate the size of the combobutton */ void balanceSize(); /** The button gets a new label, etc. */ - void tqrepaintButton(); + void repaintButton(); //public slots: //void setCurrentItem(const TQString &item, bool insert=false, int index=-1); diff --git a/src/filelist.cpp b/src/filelist.cpp index 72cb8b0..7ef9c59 100755 --- a/src/filelist.cpp +++ b/src/filelist.cpp @@ -794,13 +794,13 @@ void FileList::selectPreviousItem() FileListItem* item = selectedFiles.first()->itemAbove(); if( item != 0 ) { item->setSelected( true ); - tqrepaintItem( item ); + repaintItem( item ); ensureItemVisible( item ); } for( TQValueList<FileListItem*>::Iterator it = selectedFiles.begin(); it != selectedFiles.end(); ++it ) { (*it)->setSelected( false ); - tqrepaintItem( *it ); + repaintItem( *it ); } itemsSelected(); @@ -812,13 +812,13 @@ void FileList::selectNextItem() FileListItem* item = selectedFiles.last()->itemBelow(); if( item != 0 ) { item->setSelected( true ); - tqrepaintItem( item ); + repaintItem( item ); ensureItemVisible( item ); } for( TQValueList<FileListItem*>::Iterator it = selectedFiles.begin(); it != selectedFiles.end(); ++it ) { (*it)->setSelected( false ); - tqrepaintItem( *it ); + repaintItem( *it ); } itemsSelected(); |