uifw/AvKon/aknhlist/src/akntreelistphysicshandler.cpp
branchRCL_3
changeset 16 71dd06cfe933
parent 15 08e69e956a8c
child 23 3d340a0166ff
equal deleted inserted replaced
15:08e69e956a8c 16:71dd06cfe933
  1153 // CAknTreeListPhysicsHandler::PointerOnEmptyArea
  1153 // CAknTreeListPhysicsHandler::PointerOnEmptyArea
  1154 // ---------------------------------------------------------------------------
  1154 // ---------------------------------------------------------------------------
  1155 //
  1155 //
  1156 TBool CAknTreeListPhysicsHandler::PointerOnEmptyArea( TPoint aPosition )
  1156 TBool CAknTreeListPhysicsHandler::PointerOnEmptyArea( TPoint aPosition )
  1157     {        
  1157     {        
  1158     if ( aPosition.iY <= WorldHeight() )
  1158     if ( aPosition.iY - iViewRect.iTl.iY <= WorldHeight() )
  1159         {
  1159         {
  1160         return EFalse;
  1160         return EFalse;
  1161         }
  1161         }
  1162     return ETrue;
  1162     return ETrue;
  1163     }
  1163     }