From 151323b0c75464318881c3f96f2c3f558e63ca99 Mon Sep 17 00:00:00 2001 From: "Felix (xq) Queißner" Date: Thu, 18 Jun 2020 19:28:19 +0200 Subject: Fixes warnings and compile errors that didn't trigger without recomple. --- src/tabbrowsinghistory.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/tabbrowsinghistory.cpp') diff --git a/src/tabbrowsinghistory.cpp b/src/tabbrowsinghistory.cpp index 435bca7..db4a981 100644 --- a/src/tabbrowsinghistory.cpp +++ b/src/tabbrowsinghistory.cpp @@ -61,11 +61,15 @@ QModelIndex TabBrowsingHistory::oneBackward(QModelIndex index) const int TabBrowsingHistory::rowCount(const QModelIndex &parent) const { + Q_UNUSED(parent) return history.size(); } bool TabBrowsingHistory::setData(const QModelIndex &index, const QVariant &value, int role) { + Q_UNUSED(index) + Q_UNUSED(value) + Q_UNUSED(role) return false; } -- cgit v1.2.3