summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@theqtcompany.com>2015-01-28 13:58:08 +0100
committerAlex Blasche <alexander.blasche@theqtcompany.com>2015-02-02 08:02:09 +0000
commit8e8fc5e1b754f72840dc1b77c986729a6bb7b72c (patch)
treeb2024dfdad54ee3ae424310b9a429e14a47fb225 /src
parentdda65cb2319c1c10bbeabe4687502e0ba8b83495 (diff)
Fix compiler warning for unused variable
This causes problems when compiling Qt with the option where every compiler warning is an error. This is to become the default way of building Qt. Change-Id: I31073357470e760f72a0f3fa19f4b02c925a0d96 Reviewed-by: Peter Rustler <peter.rustler@basyskom.com> Reviewed-by: Frank Meerkoetter <frank.meerkoetter@basyskom.com> Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r--src/nfc/qllcpserver_android_p.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nfc/qllcpserver_android_p.cpp b/src/nfc/qllcpserver_android_p.cpp
index 19a1bc1b..9a8f7dd0 100644
--- a/src/nfc/qllcpserver_android_p.cpp
+++ b/src/nfc/qllcpserver_android_p.cpp
@@ -49,7 +49,7 @@ QLlcpServerPrivate::QLlcpServerPrivate(QLlcpServer *q)
{
}
-bool QLlcpServerPrivate::listen(const QString &serviceUri)
+bool QLlcpServerPrivate::listen(const QString &/*serviceUri*/)
{
/*//The server is already listening
if (isListening())