Index: sources/device/DeviceView.h =================================================================== diff -u -r80e196a153549a10b01ddc52fdd3c4f09d215da6 -r0ce9ad2246ce63e9fcb706c0025ccf2a6ee88199 --- sources/device/DeviceView.h (.../DeviceView.h) (revision 80e196a153549a10b01ddc52fdd3c4f09d215da6) +++ sources/device/DeviceView.h (.../DeviceView.h) (revision 0ce9ad2246ce63e9fcb706c0025ccf2a6ee88199) @@ -93,7 +93,7 @@ READONLY ( QString , dns , "" ) READONLY ( bool , wifiError , false ) - Q_PROPERTY(MListModel* model READ model NOTIFY didModelChange ) + Q_PROPERTY(MListModel* wifiModel READ wifiModel NOTIFY didWifiModelChange ) VIEW_DEC_CLASS(VDevice) @@ -110,7 +110,7 @@ void parseWifiListResult(const QString &vResult); void parseWifiInfoResult(const QString &vResult); void updateWifiList(); - MListModel* model () { return &_wifiModel; } + MListModel* wifiModel () { return &_wifiModel; } MListModel _wifiModel; bool isCompleteResponse(Model::MDeviceResponseBase::Data vData) { @@ -121,6 +121,6 @@ } signals: - void didModelChange(); + void didWifiModelChange(); }; }