From 84ace1135cac57993b72fee7105b92def1638d32 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 16 Dec 2011 09:58:53 -0600 Subject: Revert "Rename a number of old tq methods that are no longer tq specific" This reverts commit 97d1732e257f8700488d7ca1660ae7eba8fc6065. --- libtdegames/kgameprogress.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'libtdegames/kgameprogress.cpp') diff --git a/libtdegames/kgameprogress.cpp b/libtdegames/kgameprogress.cpp index de32cd14..98876aa3 100644 --- a/libtdegames/kgameprogress.cpp +++ b/libtdegames/kgameprogress.cpp @@ -79,11 +79,11 @@ void KGameProgress::initialize() void KGameProgress::paletteChange() { TQPalette p = kapp->palette(); - const TQColorGroup &colorGroup = p.active(); + const TQColorGroup &tqcolorGroup = p.active(); if (!use_supplied_bar_color) - bar_color = colorGroup.highlight(); - bar_text_color = colorGroup.highlightedText(); - text_color = colorGroup.text(); + bar_color = tqcolorGroup.highlight(); + bar_text_color = tqcolorGroup.highlightedText(); + text_color = tqcolorGroup.text(); setPalette(p); adjustStyle(); @@ -151,7 +151,7 @@ bool KGameProgress::textEnabled() const return text_enabled; } -TQSize KGameProgress::sizeHint() const +TQSize KGameProgress::tqsizeHint() const { TQSize s( size() ); @@ -164,9 +164,9 @@ TQSize KGameProgress::sizeHint() const return s; } -TQSize KGameProgress::minimumSizeHint() const +TQSize KGameProgress::tqminimumSizeHint() const { - return sizeHint(); + return tqsizeHint(); } TQSizePolicy KGameProgress::sizePolicy() const @@ -196,13 +196,13 @@ int KGameProgress::recalcValue(int range) void KGameProgress::valueChange() { - repaint(contentsRect(), FALSE); + tqrepaint(contentsRect(), FALSE); emit percentageChanged(recalcValue(100)); } void KGameProgress::rangeChange() { - repaint(contentsRect(), FALSE); + tqrepaint(contentsRect(), FALSE); emit percentageChanged(recalcValue(100)); } @@ -213,7 +213,7 @@ void KGameProgress::styleChange(TQStyle&) void KGameProgress::adjustStyle() { - switch (tqstyle().styleHint(TQStyle::SH_GUIStyle)) { + switch (tqstyle().tqstyleHint(TQStyle::SH_GUIStyle)) { case WindowsStyle: setFrameStyle(TQFrame::WinPanel | TQFrame::Sunken); break; @@ -242,9 +242,9 @@ void KGameProgress::drawText(TQPainter *p) // the current value and the maximum value respectively. TQString s(format_); - s.replace(TQRegExp(TQString::fromLatin1("%p")), TQString::number(recalcValue(100))); - s.replace(TQRegExp(TQString::fromLatin1("%v")), TQString::number(value())); - s.replace(TQRegExp(TQString::fromLatin1("%m")), TQString::number(maxValue())); + s.replace(TQRegExp(TQString::tqfromLatin1("%p")), TQString::number(recalcValue(100))); + s.replace(TQRegExp(TQString::tqfromLatin1("%v")), TQString::number(value())); + s.replace(TQRegExp(TQString::tqfromLatin1("%m")), TQString::number(maxValue())); p->setPen(text_color); TQFont font = p->font(); -- cgit v1.2.1