mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-17 10:31:05 -04:00
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:
parent
1843ad74c6
commit
41e42133c0
31 changed files with 121 additions and 120 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue