mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-11-29 03:46:46 -05:00
intialised channel info file count correctly
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2927 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
84a48d2c80
commit
7cd6103ff7
1 changed files with 2 additions and 2 deletions
|
|
@ -60,7 +60,7 @@ class ChannelInfo
|
||||||
class ChannelMsgInfo
|
class ChannelMsgInfo
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ChannelMsgInfo() {}
|
ChannelMsgInfo () : count(0), size(0) {}
|
||||||
std::string channelId;
|
std::string channelId;
|
||||||
std::string msgId;
|
std::string msgId;
|
||||||
|
|
||||||
|
|
@ -79,7 +79,7 @@ class ChannelMsgInfo
|
||||||
class ChannelMsgSummary
|
class ChannelMsgSummary
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ChannelMsgSummary() {}
|
ChannelMsgSummary() : count(0) {}
|
||||||
std::string channelId;
|
std::string channelId;
|
||||||
std::string msgId;
|
std::string msgId;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue