aboutsummaryrefslogtreecommitdiff
path: root/src/tabbrowsinghistory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tabbrowsinghistory.cpp')
-rw-r--r--src/tabbrowsinghistory.cpp4
1 files changed, 4 insertions, 0 deletions
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;
}