upnp/upnpstack/serviceframework/src/upnpdevice.cpp
branchRCL_3
changeset 10 594d15129e2c
parent 9 5c72fd91570d
equal deleted inserted replaced
9:5c72fd91570d 10:594d15129e2c
   542 EXPORT_C void CUpnpDevice::GetAllDevices( RPointerArray<CUpnpDevice>& aDevices )
   542 EXPORT_C void CUpnpDevice::GetAllDevices( RPointerArray<CUpnpDevice>& aDevices )
   543     {
   543     {
   544 
   544 
   545     for (TInt i = 0; i < iDeviceList.Count(); i++ )
   545     for (TInt i = 0; i < iDeviceList.Count(); i++ )
   546         {
   546         {
   547         TRAP_IGNORE(aDevices.AppendL( iDeviceList[i] ));
   547         aDevices.Append( iDeviceList[i] );
   548         iDeviceList[i]->GetAllDevices(aDevices);
   548         iDeviceList[i]->GetAllDevices(aDevices);
   549         }
   549         }
   550 
   550 
   551     }
   551     }
   552 
   552