| 42 | if(!m_Plugins) |
| 43 | m_Plugins = QSharedPointer<CManagePlugins>(new CManagePlugins()); |
| 44 | foreach(auto p, m_Plugins->m_Plugins) |
| 45 | { |
| 46 | if(p) |
| 47 | { |
| 48 | CService* pService = p->NewService(); |
| 49 | if(pService) |
| 50 | pService->SaveConfigure(szDir); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | #ifdef HAVE_ICE |
| 55 | QSettings set(RabbitCommon::CDir::Instance()->GetFileUserConfigure(), |
nothing calls this directly
no test coverage detected