diff options
author | Tobias Markmann <tm@ayena.de> | 2015-09-14 21:05:58 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2015-09-22 15:00:47 (GMT) |
commit | 74116593461c0c7b233dad96034768264e7a59ec (patch) | |
tree | 0794a0076d54a49e99f046508fc57f07ca56b921 /Swift/QtUI/QtPlainChatView.cpp | |
parent | 9b48a737db5237ecdec062a64b65e6a90c1f9cde (diff) | |
download | swift-74116593461c0c7b233dad96034768264e7a59ec.zip swift-74116593461c0c7b233dad96034768264e7a59ec.tar.bz2 |
Fix 'unused' member/parameter compiler warnings reported for Swift
Test-Information:
Still compiles, the menitoned warnings in Swift are gone and unit
tests pass.
Change-Id: I8e113e7faf2e9273b4741f18c19e35e1b7bc7661
Diffstat (limited to 'Swift/QtUI/QtPlainChatView.cpp')
-rw-r--r-- | Swift/QtUI/QtPlainChatView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtPlainChatView.cpp b/Swift/QtUI/QtPlainChatView.cpp index eabf35f..e062efc 100644 --- a/Swift/QtUI/QtPlainChatView.cpp +++ b/Swift/QtUI/QtPlainChatView.cpp @@ -160,13 +160,13 @@ void QtPlainChatView::replaceLastMessage(const ChatWindow::ChatMessage& message, QString text = "<p>The last message was corrected to:<br/>"; text += chatMessageToString(message); text += "</p>"; log_->append(text); } -void QtPlainChatView::replaceSystemMessage(const ChatWindow::ChatMessage& message, const std::string& id, const ChatWindow::TimestampBehaviour timestampBehaviour) { +void QtPlainChatView::replaceSystemMessage(const ChatWindow::ChatMessage& message, const std::string& /*id*/, const ChatWindow::TimestampBehaviour /*timestampBehaviour*/) { QString text = "<p><i>"; text += chatMessageToString(message); text += "</i></p>"; log_->append(text); } |