mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-24 23:19:29 -05:00
removed uninitialized memory read in GxsForumModel
This commit is contained in:
parent
9b0abe16dd
commit
3e187600be
@ -42,13 +42,9 @@ std::ostream& operator<<(std::ostream& o, const QModelIndex& i);// defined elsew
|
||||
const QString RsGxsForumModel::FilterString("filtered");
|
||||
|
||||
RsGxsForumModel::RsGxsForumModel(QObject *parent)
|
||||
: QAbstractItemModel(parent)
|
||||
: QAbstractItemModel(parent), mUseChildTS(false),mFilteringEnabled(false),mTreeMode(TREE_MODE_TREE)
|
||||
{
|
||||
initEmptyHierarchy(mPosts);
|
||||
|
||||
mUseChildTS=false;
|
||||
mFilteringEnabled=false;
|
||||
mTreeMode = TREE_MODE_TREE;
|
||||
}
|
||||
|
||||
void RsGxsForumModel::preMods()
|
||||
|
Loading…
Reference in New Issue
Block a user