--- a/emailuis/nmailui/src/nmbaseview.cpp Thu May 27 12:43:55 2010 +0300
+++ b/emailuis/nmailui/src/nmbaseview.cpp Fri Jun 11 13:27:14 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);
}