* Added extra forum sorting method: Last Post.

This will hopefully be more useful than the existing ones.
	Extra childTS field was added & populated.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1628 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2009-09-09 21:15:12 +00:00
parent a436af418a
commit 821855d16e
5 changed files with 48 additions and 25 deletions

View file

@ -69,6 +69,7 @@ class ForumMsgInfo
std::wstring title;
std::wstring msg;
time_t ts;
time_t childTS;
};
@ -87,7 +88,7 @@ class ThreadInfoSummary
std::wstring msg;
int count; /* file count */
time_t ts;
time_t childTS;
};
std::ostream &operator<<(std::ostream &out, const ForumInfo &info);