| 993 | } |
| 994 | |
| 995 | void LiveCapture::fileSaved(QString from, QString to) |
| 996 | { |
| 997 | for(int i = 0; i < ui->captures->count(); i++) |
| 998 | { |
| 999 | Capture *cap = GetCapture(ui->captures->item(i)); |
| 1000 | |
| 1001 | if(cap->path == from) |
| 1002 | { |
| 1003 | cap->path = to; |
| 1004 | cap->saved = true; |
| 1005 | cap->local = true; |
| 1006 | } |
| 1007 | } |
| 1008 | } |
| 1009 | |
| 1010 | int LiveCapture::unsavedCaptureCount() |
| 1011 | { |
no test coverage detected