Updates the total files indicator
| 280 | |
| 281 | // Updates the total files indicator |
| 282 | void UpdateTotalFiles(int num_files) { |
| 283 | char msg[256]; |
| 284 | |
| 285 | sprintf(msg, "Total Files: %d", num_files); |
| 286 | MainStatusBar->SetPaneText(1, msg, TRUE); |
| 287 | ProcessMessages(); |
| 288 | } |
| 289 | |
| 290 | // Updates the status bar with the given message |
| 291 | CWaitCursor *WaitCursor; |
no test coverage detected