| 308 | } |
| 309 | |
| 310 | void LogoBar::on_open_log_file() |
| 311 | { |
| 312 | QFile qf(get_dsv_log_path()); |
| 313 | if (qf.exists()){ |
| 314 | QDesktopServices::openUrl( QUrl("file:///" + get_dsv_log_path())); |
| 315 | } |
| 316 | else{ |
| 317 | QString strMsg(L_S(STR_PAGE_MSG, S_ID(IDS_MSG_FILE_NOT_EXIST), "Not exist!")); |
| 318 | MsgBox::Show(strMsg); |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | void LogoBar::on_clear_log_file() |
| 323 | { |
nothing calls this directly
no test coverage detected