From: Kevron Rees Date: Mon, 14 Feb 2011 18:18:13 +0000 (-0800) Subject: changed nearbyitem to use Alias property instead of name X-Git-Tag: 0.0.5~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6f77e141cd140e4988a90ddf2e8b11239b0e9cb8;hp=e5ed963996890ed0165d74fd7dd9c50cba5d1b87;p=profile%2Fivi%2Fbluetooth-qt.git changed nearbyitem to use Alias property instead of name --- diff --git a/nearbydevicesmodel.cpp b/nearbydevicesmodel.cpp index f3e7a30..3171860 100644 --- a/nearbydevicesmodel.cpp +++ b/nearbydevicesmodel.cpp @@ -130,7 +130,7 @@ void NearbyDevicesModel::deviceCreated(QString hwaddy, QVariantMap properties) { beginInsertRows(QModelIndex(), devices.size(), devices.size()); - NearbyItem* item = new NearbyItem(properties["Name"].toString(), + NearbyItem* item = new NearbyItem(properties["Alias"].toString(), hwaddy,properties["Icon"].toString(),properties["LegacyPairing"].toBool(),this); devices.append(item);