equal
deleted
inserted
replaced
78 void CMTPBearerMonitor::ConstructL() |
78 void CMTPBearerMonitor::ConstructL() |
79 { |
79 { |
80 __FLOG( _L8("+ConstructL") ); |
80 __FLOG( _L8("+ConstructL") ); |
81 |
81 |
82 CMTPBluetoothController* btController = CMTPBluetoothController::NewL( *this ); |
82 CMTPBluetoothController* btController = CMTPBluetoothController::NewL( *this ); |
|
83 CleanupStack::PushL(btController); |
83 iMTPControllers.AppendL( btController ); |
84 iMTPControllers.AppendL( btController ); |
|
85 CleanupStack::Pop(btController); |
84 |
86 |
85 __FLOG( _L8("-ConstructL") ); |
87 __FLOG( _L8("-ConstructL") ); |
86 } |
88 } |
87 |
89 |