18 // System includes |
18 // System includes |
19 #include <hbextendedlocale.h> |
19 #include <hbextendedlocale.h> |
20 |
20 |
21 // User includes |
21 // User includes |
22 #include "caleneventlistviewitem.h" |
22 #include "caleneventlistviewitem.h" |
|
23 #include "OstTraceDefinitions.h" |
|
24 #ifdef OST_TRACE_COMPILER_IN_USE |
|
25 #include "caleneventlistviewitemTraces.h" |
|
26 #endif |
|
27 |
23 |
28 |
24 CalenEventListViewItem::CalenEventListViewItem(QGraphicsItem *parent) : |
29 CalenEventListViewItem::CalenEventListViewItem(QGraphicsItem *parent) : |
25 HbListViewItem(parent) |
30 HbListViewItem(parent) |
26 { |
31 { |
|
32 OstTraceFunctionEntry0( CALENEVENTLISTVIEWITEM_CALENEVENTLISTVIEWITEM_ENTRY ); |
|
33 |
|
34 OstTraceFunctionExit0( CALENEVENTLISTVIEWITEM_CALENEVENTLISTVIEWITEM_EXIT ); |
27 } |
35 } |
28 |
36 |
29 CalenEventListViewItem::~CalenEventListViewItem() |
37 CalenEventListViewItem::~CalenEventListViewItem() |
30 { |
38 { |
|
39 OstTraceFunctionEntry0( DUP1_CALENEVENTLISTVIEWITEM_CALENEVENTLISTVIEWITEM_ENTRY ); |
|
40 |
31 // No implementation yet |
41 // No implementation yet |
|
42 OstTraceFunctionExit0( DUP1_CALENEVENTLISTVIEWITEM_CALENEVENTLISTVIEWITEM_EXIT ); |
32 } |
43 } |
33 |
44 |
34 HbAbstractViewItem* CalenEventListViewItem::createItem() |
45 HbAbstractViewItem* CalenEventListViewItem::createItem() |
35 { |
46 { |
|
47 OstTraceFunctionEntry0( CALENEVENTLISTVIEWITEM_CREATEITEM_ENTRY ); |
|
48 |
|
49 OstTraceFunctionExit0( CALENEVENTLISTVIEWITEM_CREATEITEM_EXIT ); |
36 return new CalenEventListViewItem(*this); |
50 return new CalenEventListViewItem(*this); |
37 } |
51 } |
38 |
52 |
39 void CalenEventListViewItem::updateChildItems() |
53 void CalenEventListViewItem::updateChildItems() |
40 { |
54 { |
|
55 OstTraceFunctionEntry0( CALENEVENTLISTVIEWITEM_UPDATECHILDITEMS_ENTRY ); |
|
56 |
41 HbListViewItem::updateChildItems(); |
57 HbListViewItem::updateChildItems(); |
|
58 |
|
59 OstTraceFunctionExit0( CALENEVENTLISTVIEWITEM_UPDATECHILDITEMS_EXIT ); |
42 } |
60 } |
43 |
61 |
44 // End of file |
62 // End of file |