--- a/videocollection/videofiledetailsview/src/videodetailslabel.cpp Thu Apr 01 23:32:44 2010 +0300
+++ b/videocollection/videofiledetailsview/src/videodetailslabel.cpp Fri Apr 16 18:13:14 2010 +0300
@@ -15,6 +15,9 @@
*
*/
+// Version : %version: %
+
+#include "videocollectiontrace.h"
#include "videodetailslabel.h"
// SYSTEM INCLUDES
@@ -25,9 +28,10 @@
// VideoDetailsLabel::VideoDetailsLabel
// @see header
//---------------------------------------------------------------
-VideoDetailsLabel::VideoDetailsLabel(QGraphicsItem *parent) :
- HbLabel(parent)
+VideoDetailsLabel::VideoDetailsLabel(QGraphicsItem *parent)
+ : HbLabel( parent )
{
+ FUNC_LOG;
}
//---------------------------------------------------------------
@@ -36,6 +40,7 @@
//---------------------------------------------------------------
VideoDetailsLabel::~VideoDetailsLabel()
{
+ FUNC_LOG;
}
//---------------------------------------------------------------
@@ -44,6 +49,7 @@
//---------------------------------------------------------------
void VideoDetailsLabel::click()
{
+ FUNC_LOG;
emit clicked(true);
}
@@ -53,6 +59,7 @@
//---------------------------------------------------------------
void VideoDetailsLabel::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
+ FUNC_LOG;
Q_UNUSED(event);
emit clicked(true);
}