From bbbdf6a60abfc87d9eb049470181b9331d0e5cd1 Mon Sep 17 00:00:00 2001
From: Tomaz Canabrava <tomaz.canabrava@gmail.com>
Date: Tue, 8 Mar 2016 02:26:04 -0300
Subject: [PATCH 11/21] Clean divelocationmodel.cpp

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com>
---
 qt-models/divelocationmodel.cpp | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/qt-models/divelocationmodel.cpp b/qt-models/divelocationmodel.cpp
index d185de1..f779537 100644
--- a/qt-models/divelocationmodel.cpp
+++ b/qt-models/divelocationmodel.cpp
@@ -24,6 +24,7 @@ LocationInformationModel::LocationInformationModel(QObject *obj) : QAbstractTabl
 
 int LocationInformationModel::columnCount(const QModelIndex &parent) const
 {
+	Q_UNUSED(parent);
 	return COLUMNS;
 }
 
@@ -159,6 +160,8 @@ bool LocationInformationModel::setData(const QModelIndex &index, const QVariant
 
 bool LocationInformationModel::removeRows(int row, int count, const QModelIndex & parent)
 {
+	Q_UNUSED(count);
+	Q_UNUSED(parent);
 	if(row >= rowCount())
 		return false;
 
-- 
2.5.4 (Apple Git-61)

