| 136 | } |
| 137 | |
| 138 | int DSMessageBox::exec() |
| 139 | { |
| 140 | QFont font = this->font(); |
| 141 | font.setPointSizeF(AppConfig::Instance().appOptions.fontSize); |
| 142 | ui::set_form_font(this, font); |
| 143 | |
| 144 | if (_titlebar != NULL){ |
| 145 | _titlebar->update_font(); |
| 146 | } |
| 147 | |
| 148 | PopupDlgList::AddDlgTolist(this); |
| 149 | |
| 150 | return QDialog::exec(); |
| 151 | } |
| 152 | |
| 153 | } // namespace dialogs |
| 154 | } // namespace pv |
nothing calls this directly
no test coverage detected