| 49 | } |
| 50 | |
| 51 | void CMainWindow::on_pbSave_clicked() |
| 52 | { |
| 53 | emit sigAccept(); |
| 54 | foreach(auto service, m_Service) |
| 55 | { |
| 56 | service->SaveConfigure(); |
| 57 | } |
| 58 | #ifdef HAVE_ICE |
| 59 | QSettings set(RabbitCommon::CDir::Instance()->GetFileUserConfigure(), QSettings::IniFormat); |
| 60 | CICE::Instance()->GetParameter()->Save(set); |
| 61 | #endif |
| 62 | } |
| 63 | |
| 64 | int CMainWindow::InitTab() |
| 65 | { |
nothing calls this directly
no test coverage detected