diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:47:59 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:47:59 -0600 |
commit | c2637a0da6d9a1c8626ca39f8451ab3b7cda487a (patch) | |
tree | be38034f085e8be24f14f329f87a611d319e6259 /kghostview/scrollbox.cpp | |
parent | 3fd343f2c6b0545bd750b2939c74be3834b13274 (diff) | |
download | tdegraphics-c2637a0da6d9a1c8626ca39f8451ab3b7cda487a.tar.gz tdegraphics-c2637a0da6d9a1c8626ca39f8451ab3b7cda487a.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kghostview/scrollbox.cpp')
-rw-r--r-- | kghostview/scrollbox.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kghostview/scrollbox.cpp b/kghostview/scrollbox.cpp index 0246e893..87d68418 100644 --- a/kghostview/scrollbox.cpp +++ b/kghostview/scrollbox.cpp @@ -99,19 +99,19 @@ void ScrollBox::setPageSize( const TQSize& s ) { pagesize = s; setFixedHeight( s.height() * width() / s.width() ); - tqrepaint(); + repaint(); } void ScrollBox::setViewSize( const TQSize& s ) { viewsize = s; - tqrepaint(); + repaint(); } void ScrollBox::setViewPos( const TQPoint& pos ) { viewpos = pos; - tqrepaint(); + repaint(); } void ScrollBox::setThumbnail( TQPixmap img ) |