summaryrefslogtreecommitdiffstats
path: root/kturtle/src/dialogs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kturtle/src/dialogs.cpp')
-rw-r--r--kturtle/src/dialogs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kturtle/src/dialogs.cpp b/kturtle/src/dialogs.cpp
index 315c1f84..ac275842 100644
--- a/kturtle/src/dialogs.cpp
+++ b/kturtle/src/dialogs.cpp
@@ -228,7 +228,7 @@ void ColorPicker::updatePal()
valuePal->setSaturation(s);
valuePal->setValue(v);
valuePal->updateContents();
- valuePal->tqrepaint(false);
+ valuePal->repaint(false);
}
void ColorPicker::updatePatch()
@@ -239,7 +239,7 @@ void ColorPicker::updatePatch()
void ColorPicker::updateColorCode()
{
color.getRgb(&r, &g, &b);
- colorcode->setText( TQString("%1, %2, %3").tqarg(r).tqarg(g).tqarg(b) );
+ colorcode->setText( TQString("%1, %2, %3").arg(r).arg(g).arg(b) );
colorcode->selectAll();
}