summaryrefslogtreecommitdiffstats
path: root/khexedit/lib/kbytesedit.cpp
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
commitc3509de54b7ba51981f84c6981aa2ccae2f2bc2f (patch)
treed1b63b005ae0ff1fa7b299dbd711aaa1b11952e5 /khexedit/lib/kbytesedit.cpp
parent598cf55c6eb7cbae4df369ba3260258c15541810 (diff)
downloadtdeutils-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 'khexedit/lib/kbytesedit.cpp')
-rw-r--r--khexedit/lib/kbytesedit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/khexedit/lib/kbytesedit.cpp b/khexedit/lib/kbytesedit.cpp
index db4b193..3eb49bd 100644
--- a/khexedit/lib/kbytesedit.cpp
+++ b/khexedit/lib/kbytesedit.cpp
@@ -129,7 +129,7 @@ void KBytesEdit::setKeepsMemory( bool KM )
bool KBytesEdit::isAutoDelete() const { return AutoDelete; }
-void KBytesEdit::tqrepaintRange( int i1, int i2 )
+void KBytesEdit::repaintRange( int i1, int i2 )
{
bool ChangeCursor = !(CursorPaused) && KSection(i1,i2).includes( BufferCursor->index() );
if( ChangeCursor )
@@ -137,7 +137,7 @@ void KBytesEdit::tqrepaintRange( int i1, int i2 )
BufferRanges->addChangedRange( i1, i2 );
- tqrepaintChanged();
+ repaintChanged();
if( ChangeCursor )
unpauseCursor();