turned typedef RsGxsMessageId into RsFileHash instead of std::string

git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.6-IdCleaning@7149 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2014-02-23 22:09:51 +00:00
parent 1843ad74c6
commit 41e42133c0
31 changed files with 121 additions and 120 deletions

View file

@ -142,7 +142,7 @@ const std::string& Filename();
* The hash computed for this configuration, can use this to compare to externally stored hash
* for validation checking
*/
const std::string& Hash();
const RsFileHash& Hash();
protected:
@ -150,7 +150,7 @@ const std::string& Hash();
* Checks if configuration has changed
*/
virtual void IndicateConfigChanged();
void setHash(const std::string& h);
void setHash(const RsFileHash& h);
RsMutex cfgMtx;
@ -170,7 +170,7 @@ void setHash(const std::string& h);
uint32_t type;
std::string filename;
std::string hash;
RsFileHash hash;
friend class p3ConfigMgr;