summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
commit633d093981e9e04c06921459694cd095cdf85c23 (patch)
treef57f57a42931d695016276d6784cfc1743c82a14 /src
parent6b1b516f42036cf9eff691dba3fd6e9eab82a7e1 (diff)
downloadsoundkonverter-633d093981e9e04c06921459694cd095cdf85c23.tar.gz
soundkonverter-633d093981e9e04c06921459694cd095cdf85c23.zip
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/soundkonverter@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src')
-rwxr-xr-xsrc/cdopener.cpp8
-rwxr-xr-xsrc/combobutton.cpp8
-rwxr-xr-xsrc/combobutton.h2
-rwxr-xr-xsrc/filelist.cpp8
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();