equal
deleted
inserted
replaced
243 // ----------------------------------------------------------------------------- |
243 // ----------------------------------------------------------------------------- |
244 // |
244 // |
245 void CMusUiLiveSharingViewContainer::HandlePointerEventL( |
245 void CMusUiLiveSharingViewContainer::HandlePointerEventL( |
246 const TPointerEvent& aPointerEvent) |
246 const TPointerEvent& aPointerEvent) |
247 { |
247 { |
248 if ( Rect().Contains( aPointerEvent.iPosition ) ) |
|
249 { |
|
250 // Forward to base class in order to use slider |
248 // Forward to base class in order to use slider |
251 CCoeControl::HandlePointerEventL( aPointerEvent ); |
249 CCoeControl::HandlePointerEventL( aPointerEvent ); |
252 } |
250 |
253 else |
251 if ( !Rect().Contains( aPointerEvent.iPosition ) ) |
254 { |
252 { |
255 MakeVisible( EFalse ); |
253 MakeVisible( EFalse ); |
256 } |
254 } |
257 } |
255 } |
258 |
256 |