mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-25 23:49:35 -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");
|
const QString RsGxsForumModel::FilterString("filtered");
|
||||||
|
|
||||||
RsGxsForumModel::RsGxsForumModel(QObject *parent)
|
RsGxsForumModel::RsGxsForumModel(QObject *parent)
|
||||||
: QAbstractItemModel(parent)
|
: QAbstractItemModel(parent), mUseChildTS(false),mFilteringEnabled(false),mTreeMode(TREE_MODE_TREE)
|
||||||
{
|
{
|
||||||
initEmptyHierarchy(mPosts);
|
initEmptyHierarchy(mPosts);
|
||||||
|
|
||||||
mUseChildTS=false;
|
|
||||||
mFilteringEnabled=false;
|
|
||||||
mTreeMode = TREE_MODE_TREE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void RsGxsForumModel::preMods()
|
void RsGxsForumModel::preMods()
|
||||||
|
Loading…
Reference in New Issue
Block a user