documenting p3chatservice,

added 'idle' status to status service
 - idle status not saved 

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2790 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2010-04-27 11:53:46 +00:00
parent 40da50799e
commit f1dab2b094
3 changed files with 24 additions and 12 deletions

View file

@ -66,6 +66,11 @@ void p3Status::getStatusString(uint32_t status, std::string& statusString){
}else if (status == RS_STATUS_ONLINE){
statusString = "Online";
}else if(status == RS_STATUS_INACTIVE){
statusString = "Inactive";
}
return;