| 45 | } |
| 46 | |
| 47 | QHBoxLayout *SettingsDialog::buttonLayout() |
| 48 | { |
| 49 | if (!m_buttonLayout) { |
| 50 | m_buttonLayout = new QHBoxLayout; |
| 51 | m_buttonLayout->addStretch(); |
| 52 | m_mainLayout->addLayout(m_buttonLayout); |
| 53 | } |
| 54 | return m_buttonLayout; |
| 55 | } |
| 56 | |
| 57 | QComboBox *SettingsDialog::addComboBox( |
| 58 | const QStringList &items, const QString ¤tText, bool editable) |
no outgoing calls
no test coverage detected