| 707 | } |
| 708 | |
| 709 | void MainWindow::createNotifyIcons() |
| 710 | { |
| 711 | /* create notify icons */ |
| 712 | QList<UserNotify*>::iterator it; |
| 713 | for (it = userNotifyList.begin(); it != userNotifyList.end(); ++it) { |
| 714 | UserNotify *userNotify = *it; |
| 715 | userNotify->createIcons(notifyMenu); |
| 716 | userNotify->updateIcon(); |
| 717 | } |
| 718 | updateTrayCombine(); |
| 719 | } |
| 720 | |
| 721 | const QList<UserNotify*> &MainWindow::getUserNotifyList() |
| 722 | { |
no test coverage detected