diff -r 139d4b7b2938 -r 99bcbff212ad emailuis/nmailui/src/nmbaseview.cpp --- a/emailuis/nmailui/src/nmbaseview.cpp Mon May 24 21:02:02 2010 +0300 +++ b/emailuis/nmailui/src/nmbaseview.cpp Fri May 28 13:56:43 2010 +0300 @@ -33,6 +33,7 @@ mStartParam(startParam), mApplication(application) { + NM_FUNCTION; } /*! @@ -40,6 +41,8 @@ */ NmBaseView::~NmBaseView() { + NM_FUNCTION; + delete mStartParam; } @@ -50,6 +53,8 @@ */ void NmBaseView::okToExitView() { + NM_FUNCTION; + mApplication.popView(); } @@ -60,6 +65,7 @@ */ void NmBaseView::aboutToExitView() { + NM_FUNCTION; } /*! @@ -68,7 +74,8 @@ if it makes sense to construct items after main view is shown. */ void NmBaseView::viewReady() -{ +{ + NM_FUNCTION; } /*! @@ -77,6 +84,7 @@ */ void NmBaseView::aboutToChangeOrientation() { + NM_FUNCTION; } /*! @@ -85,6 +93,8 @@ */ void NmBaseView::orientationChanged(Qt::Orientation orientation) { + NM_FUNCTION; + Q_UNUSED(orientation); } @@ -94,6 +104,8 @@ */ void NmBaseView::handleMouseReleaseEvent(QGraphicsSceneMouseEvent *event) { + NM_FUNCTION; + Q_UNUSED(event); } @@ -103,6 +115,8 @@ */ void NmBaseView::handleMousePressEvent(QGraphicsSceneMouseEvent *event) { + NM_FUNCTION; + Q_UNUSED(event); } @@ -113,6 +127,8 @@ */ void NmBaseView::handleMouseMoveEvent(QGraphicsSceneMouseEvent *event) { + NM_FUNCTION; + Q_UNUSED(event); }