stifui/qt/src/dlgsetselector.cpp
branchRCL_3
changeset 15 65b472535a0d
parent 13 822c625f7adc
child 17 d40e813b23c0
equal deleted inserted replaced
13:822c625f7adc 15:65b472535a0d
    17 
    17 
    18 #include "dlgsetselector.h"
    18 #include "dlgsetselector.h"
    19 #include <QtGui>
    19 #include <QtGui>
    20 
    20 
    21 DlgSetSelector::DlgSetSelector(QList<QString> list, QWidget* parent):
    21 DlgSetSelector::DlgSetSelector(QList<QString> list, QWidget* parent):
    22         QDialog(parent), setList(list), selectName("")
    22         QDialog(parent), selectName(""), setList(list)
    23     {
    23     {
    24     SetupUI();
    24     SetupUI();
    25     }
    25     }
    26 
    26 
    27 void DlgSetSelector::SetupUI()
    27 void DlgSetSelector::SetupUI()
    70             
    70             
    71      mainLayout->addWidget(toolWidget, 3, 0);
    71      mainLayout->addWidget(toolWidget, 3, 0);
    72      this->showMaximized();
    72      this->showMaximized();
    73      
    73      
    74     }
    74     }
    75 void DlgSetSelector::on_radio1Selection_Changed(bool checked)
    75 void DlgSetSelector::on_radio1Selection_Changed(bool /* checked */)
    76     {
    76     {
    77     lstSet->setEnabled(false);
    77     lstSet->setEnabled(false);
    78     }
    78     }
    79 
    79 
    80 
    80