| 16 | } |
| 17 | |
| 18 | void WizGroupMessage::on_timer_timeout() |
| 19 | { |
| 20 | m_timer.stop(); |
| 21 | |
| 22 | // clean up |
| 23 | m_arrayMsgNeedUpload.clear(); |
| 24 | m_listMsgUploading.clear(); |
| 25 | m_bizInfo.clear(); |
| 26 | |
| 27 | // start login |
| 28 | QString strUserId = m_db.getUserId(); |
| 29 | QString strPasswd = m_db.getPassword(); |
| 30 | callClientLogin(strUserId, strPasswd); |
| 31 | } |
| 32 | |
| 33 | void WizGroupMessage::onClientLogin(const WIZUSERINFO& userInfo) |
| 34 | { |
nothing calls this directly
no test coverage detected