I have simple tab with label and checkbox. I want to add slider, but slider is not showing. Method setGeometry wrong there?
RollsTab::RollsTab(QWidget *parent)
: QWidget(parent)
{
QFont font("Times", 11);
label1 = new QLabel(rus("11111"), this);
label1->setFont(font);
label1->setGeometry(20, 25, 160, 20);
checkBoxRolls = new QCheckBox(rus(""), this);
checkBoxRolls->setChecked(stateRR);
checkBoxRolls->setGeometry(180, 25, 55, 22);
sliderA = new QSlider(Qt::Horizontal);
sliderA->setRange(0, 99);
sliderA->setValue(0);
sliderA->setGeometry(20, 50, 55, 22);
}