mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-31 10:19:24 -04:00
removed uninitialized memory read in GxsForumModel
This commit is contained in:
parent
9b0abe16dd
commit
3e187600be
1 changed files with 1 additions and 5 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue