blob: 2a0b52ea143aa3d6bea73aed750e0f83355ca57e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <tqradiobutton.h>
#include <tqspinbox.h>
#include "creditform.h"
CreditForm::CreditForm( TQWidget* tqparent, const char* name,
bool modal, WFlags fl )
: CreditFormBase( tqparent, name, modal, fl )
{
setAmount();
}
CreditForm::~CreditForm() { /* NOOP */ }
void CreditForm::setAmount()
{
if ( stdRadioButton->isChecked() )
amountSpinBox->setValue( amountSpinBox->maxValue() / 2 );
else if ( noneRadioButton->isChecked() )
amountSpinBox->setValue( amountSpinBox->minValue() );
}
|