diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:36:11 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:36:11 -0600 |
commit | 1f3400bba10b276a9e167ef6f6d9d31c84a18135 (patch) | |
tree | ea06fe6a81e27b5c3c78b14bddebd9707221f4fc /src/kbfxbutton.cpp | |
parent | bc48dbcc61e0c39023cc81c09f716d2ed8158648 (diff) | |
download | kbfx-1f3400bba10b276a9e167ef6f6d9d31c84a18135.tar.gz kbfx-1f3400bba10b276a9e167ef6f6d9d31c84a18135.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/kbfxbutton.cpp')
-rw-r--r-- | src/kbfxbutton.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kbfxbutton.cpp b/src/kbfxbutton.cpp index a3a0f87..d4903d7 100644 --- a/src/kbfxbutton.cpp +++ b/src/kbfxbutton.cpp @@ -93,7 +93,7 @@ void KbfxButton::loadSkins() m_pressed_skin = TQPixmap ( _tmpPressed ); m_current_skin = m_normal_skin; this->resize ( m_current_skin.width(),m_current_skin.height() ); - this->tqrepaint(); + this->repaint(); } TQCString KbfxButton::findPanel() @@ -344,7 +344,7 @@ void KbfxButton::paintEvent ( TQPaintEvent * pe ) m_buffer->resize ( r.size() ); m_buffer->fill ( this, r.topLeft() ); - p.tqbegin ( m_buffer,this ); + p.begin ( m_buffer,this ); p.translate ( -r.x(), -r.y() ); p.drawPixmap ( r,m_current_skin ); p.end (); |