diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-10-31 16:22:30 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-10-31 14:58:55 -0700 |
commit | 7c4ddcbf7ac0fd587f31f22bcefba7ab2f488cb0 (patch) | |
tree | cee6191053582be624239d312d974a33e25613ab | |
parent | e90eac2d38f56662d91e223ef5c0089f9c0a69ee (diff) | |
download | subsurface-7c4ddcbf7ac0fd587f31f22bcefba7ab2f488cb0.tar.gz |
Implemented the constructor for the BuddyFilter
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/models.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index dca8d747b..4972fbf00 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -2351,7 +2351,7 @@ bool TagFilterModel::filterRow(int source_row, const QModelIndex &source_parent, return false; } -BuddyFilterModel::BuddyFilterModel(QObject *parent) +BuddyFilterModel::BuddyFilterModel(QObject *parent) : QStringListModel(parent), checkState(NULL) { } |