| 489 | } |
| 490 | |
| 491 | int CFrmFileTransfer::EnumRemoteDirectory(CRemoteFileSystem *pRfs, |
| 492 | const QString &szLocalDir) |
| 493 | { |
| 494 | qDebug(log) << Q_FUNC_INFO; |
| 495 | if(!pRfs || !pRfs->IsDir()) return -1; |
| 496 | |
| 497 | for(int index = 0; index < pRfs->ChildCount(); index++) { |
| 498 | //TODO: Complete it |
| 499 | } |
| 500 | return 0; |
| 501 | } |
| 502 | |
| 503 | void CFrmFileTransfer::slotTreeRemoteAddToList() |
| 504 | { |
nothing calls this directly
no test coverage detected