diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 |
commit | 6171b5113040c768f68b673ec0e8ae2f82c64391 (patch) | |
tree | f67c2b1d073d34517739a905e4e550ec2d675deb /konsole | |
parent | 0ec9a2e4ecb64811b592c6736bc47fadadc0e27f (diff) | |
download | tdebase-6171b5113040c768f68b673ec0e8ae2f82c64391.tar.gz tdebase-6171b5113040c768f68b673ec0e8ae2f82c64391.zip |
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konsole')
-rw-r--r-- | konsole/konsole/TEWidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/konsole/konsole/TEWidget.cpp b/konsole/konsole/TEWidget.cpp index 6b350b261..37dc4785a 100644 --- a/konsole/konsole/TEWidget.cpp +++ b/konsole/konsole/TEWidget.cpp @@ -835,7 +835,7 @@ void TEWidget::setImage(const ca* const newimg, int lines, int columns) const ca* lcl = &image[y*this->columns]; const ca* const ext = &newimg[y*columns]; - // The dirty mask indicates which characters need tqrepainting. We also + // The dirty mask indicates which characters need repainting. We also // mark surrounding neighbours dirty, in case the character exceeds // its cell boundaries memset(dirtyMask, 0, cols+2); @@ -1976,13 +1976,13 @@ void TEWidget::imEndEvent( TQIMEvent *e ) int tLx = tL.x(); int tLy = tL.y(); - TQRect tqrepaintRect = TQRect( bX+tLx, bY+tLy+font_h*m_imStartLine, + TQRect repaintRect = TQRect( bX+tLx, bY+tLy+font_h*m_imStartLine, contentsRect().width(), contentsRect().height() ); m_imStart = 0; m_imPreeditLength = 0; m_isIMEdit = m_isIMSel = false; - tqrepaint( tqrepaintRect, true ); + tqrepaint( repaintRect, true ); } // Override any Ctrl+<key> accelerator when pressed with the keyboard |