Fix spinbox text entry when base is not 10

pull/16/head
Timothy Pearson 13 years ago
parent 513ffc6edf
commit d1c71f692f

@ -206,6 +206,7 @@ KIntSpinBox::KIntSpinBox(TQWidget *parent, const char *name)
{ {
editor()->setAlignment(AlignRight); editor()->setAlignment(AlignRight);
val_base = 10; val_base = 10;
setValidator(new KIntValidator(this, val_base));
setValue(0); setValue(0);
} }
@ -219,11 +220,16 @@ KIntSpinBox::KIntSpinBox(int lower, int upper, int step, int value, int base,
{ {
editor()->setAlignment(AlignRight); editor()->setAlignment(AlignRight);
val_base = base; val_base = base;
setValidator(new KIntValidator(this, val_base));
setValue(value); setValue(value);
} }
void KIntSpinBox::setBase(int base) void KIntSpinBox::setBase(int base)
{ {
const KIntValidator* kvalidator = dynamic_cast<const KIntValidator*>(validator());
if (kvalidator) {
const_cast<KIntValidator*>(kvalidator)->setBase(base);
}
val_base = base; val_base = base;
} }

Loading…
Cancel
Save