implement function for clearCompleted on filetransfer panel

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@866 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
ewensun 2008-12-04 21:34:19 +00:00
parent 67b6b24e63
commit 889ad3555b

View File

@ -758,6 +758,11 @@ bool ftController::FileControl(std::string hash, uint32_t flags)
bool ftController::FileClearCompleted()
{
#ifdef CONTROL_DEBUG
std::cerr << "ftController::FileClearCompleted()" <<std::endl;
#endif
mCompleted.clear();
IndicateConfigChanged();
return false;
}