removed uninitialized memory read in GxsForumModel

This commit is contained in:
csoler 2020-04-26 13:07:39 +02:00
parent 9b0abe16dd
commit 3e187600be
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -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()