diff options
Diffstat (limited to 'lib/widgets/processwidget.cpp')
-rw-r--r-- | lib/widgets/processwidget.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/widgets/processwidget.cpp b/lib/widgets/processwidget.cpp index f28e4ec7..1b4cb3ab 100644 --- a/lib/widgets/processwidget.cpp +++ b/lib/widgets/processwidget.cpp @@ -73,7 +73,7 @@ void ProcessListBoxItem::paint(TQPainter *p) { TQColor dim, warn, err, back; if (listBox()) { - const TQColorGroup& group = listBox()->palette().active(); + const TQColorGroup& group = listBox()->tqpalette().active(); if (isSelected()) { back = group.button(); warn = group.buttonText(); @@ -227,7 +227,7 @@ void ProcessWidget::childFinished(bool normal, int status) if (normal) { if (status) { - s = i18n("*** Exited with status: %1 ***").arg(status); + s = i18n("*** Exited with status: %1 ***").tqarg(status); t = ProcessListBoxItem::Error; } else { s = i18n("*** Exited normally ***"); @@ -249,12 +249,12 @@ void ProcessWidget::childFinished(bool normal, int status) } -TQSize ProcessWidget::minimumSizeHint() const +TQSize ProcessWidget::tqminimumSizeHint() const { - // I'm not sure about this, but when I don't use override minimumSizeHint(), + // I'm not sure about this, but when I don't use override tqminimumSizeHint(), // the initial size in clearly too small - return TQSize( TQListBox::sizeHint().width(), + return TQSize( TQListBox::tqsizeHint().width(), (fontMetrics().lineSpacing()+2)*4 ); } |