diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-18 19:28:19 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-18 19:28:19 +0200 |
| commit | 151323b0c75464318881c3f96f2c3f558e63ca99 (patch) | |
| tree | de02a710cf6109f6b53cef50953d5a5200cee343 /src/tabbrowsinghistory.cpp | |
| parent | fe7effa97f20a8c09c65617d8346b1c75d1f7a8e (diff) | |
| download | kristall-151323b0c75464318881c3f96f2c3f558e63ca99.tar.gz | |
Fixes warnings and compile errors that didn't trigger without recomple.
Diffstat (limited to 'src/tabbrowsinghistory.cpp')
| -rw-r--r-- | src/tabbrowsinghistory.cpp | 4 |
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; } |
