From 4faf11eccc5f08d2aa0540157d6eff80b7cdb02a Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:33:46 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- src/gui/widgets/ScrollBox.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/gui/widgets/ScrollBox.cpp') diff --git a/src/gui/widgets/ScrollBox.cpp b/src/gui/widgets/ScrollBox.cpp index 66ecc21..7deb0e0 100644 --- a/src/gui/widgets/ScrollBox.cpp +++ b/src/gui/widgets/ScrollBox.cpp @@ -123,31 +123,31 @@ void ScrollBox::setPageSize(const TQSize& s) setFixedWidth(width); } - tqrepaint(); + repaint(); } void ScrollBox::setViewSize(const TQSize& s) { m_viewsize = s; - tqrepaint(); + repaint(); } void ScrollBox::setViewPos(const TQPoint& pos) { m_viewpos = pos; - tqrepaint(); + repaint(); } void ScrollBox::setViewX(int x) { m_viewpos = TQPoint(x, m_viewpos.y()); - tqrepaint(); + repaint(); } void ScrollBox::setViewY(int y) { m_viewpos = TQPoint(m_viewpos.x(), y); - tqrepaint(); + repaint(); } void ScrollBox::setThumbnail(TQPixmap img) -- cgit v1.2.3