summaryrefslogtreecommitdiffstats
path: root/qt-ui/filtermodels.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2015-05-26 17:42:45 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-05-26 21:48:45 -0700
commitffffccee9362cbbdf05194b48f11fc55b651b847 (patch)
tree9857d2b74c0ae2f499f3d298daecce176f443054 /qt-ui/filtermodels.h
parentee7e5113723cf40d598ed30a6f8409b5d4504422 (diff)
downloadsubsurface-ffffccee9362cbbdf05194b48f11fc55b651b847.tar.gz
Filter out the dives that are not at dive_site.
Untested code to filter out dives that are not at the active dive_site. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/filtermodels.h')
-rw-r--r--qt-ui/filtermodels.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/qt-ui/filtermodels.h b/qt-ui/filtermodels.h
index f9eb700dd..3403b3031 100644
--- a/qt-ui/filtermodels.h
+++ b/qt-ui/filtermodels.h
@@ -3,6 +3,7 @@
#include <QStringListModel>
#include <QSortFilterProxyModel>
+#include <stdint.h>
class MultiFilterInterface {
public:
@@ -93,7 +94,7 @@ public
slots:
void myInvalidate();
void clearFilter();
- void startFilterDiveSite(int32_t uuid);
+ void startFilterDiveSite(uint32_t uuid);
void stopFilterDiveSite();
signals: