From b5420048f9e4849d917b8932698293524146c2c2 Mon Sep 17 00:00:00 2001 From: Albert Vaca Date: Mon, 23 Mar 2015 20:44:18 -0700 Subject: [PATCH] Fixed warning --- interfaces/devicesmodel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/interfaces/devicesmodel.cpp b/interfaces/devicesmodel.cpp index dd0e5bf87..16b4d7703 100644 --- a/interfaces/devicesmodel.cpp +++ b/interfaces/devicesmodel.cpp @@ -168,6 +168,7 @@ void DevicesModel::appendDevice(DeviceDbusInterface* dev) void DevicesModel::nameChanged(const QString& newName) { + Q_UNUSED(newName); int row = m_deviceList.indexOf(static_cast(sender())); Q_ASSERT(row>=0); const QModelIndex idx = index(row, 0);