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 | c3509de54b7ba51981f84c6981aa2ccae2f2bc2f (patch) | |
tree | d1b63b005ae0ff1fa7b299dbd711aaa1b11952e5 /charselectapplet/charselectapplet.cpp | |
parent | 598cf55c6eb7cbae4df369ba3260258c15541810 (diff) | |
download | tdeutils-c3509de54b7ba51981f84c6981aa2ccae2f2bc2f.tar.gz tdeutils-c3509de54b7ba51981f84c6981aa2ccae2f2bc2f.zip |
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'charselectapplet/charselectapplet.cpp')
-rw-r--r-- | charselectapplet/charselectapplet.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/charselectapplet/charselectapplet.cpp b/charselectapplet/charselectapplet.cpp index 1ccfaf8..047b3f2 100644 --- a/charselectapplet/charselectapplet.cpp +++ b/charselectapplet/charselectapplet.cpp @@ -228,7 +228,7 @@ void CharTable::paintEvent(TQPaintEvent* e) TQFrame::paintEvent(e); } -void CharTable::tqrepaintCell(int r, int c) +void CharTable::repaintCell(int r, int c) { TQPainter p(this); @@ -307,8 +307,8 @@ void CharTable::selectCell(int row, int col) _activeRow = row; _activeCol = col; - tqrepaintCell(oldRow, oldCol); - tqrepaintCell(_activeRow, _activeCol); + repaintCell(oldRow, oldCol); + repaintCell(_activeRow, _activeCol); TQClipboard *cb = TQApplication::tqclipboard(); TQObject::disconnect( cb, TQT_SIGNAL(dataChanged()), this, TQT_SLOT(clearCell()) ); @@ -330,7 +330,7 @@ void CharTable::clearCell() _activeRow = -1; _activeCol = -1; - tqrepaintCell(oldRow, oldCol); + repaintCell(oldRow, oldCol); TQObject::disconnect( TQApplication::tqclipboard(), TQT_SIGNAL(dataChanged()), this, TQT_SLOT(clearCell()) ); } |