equal
deleted
inserted
replaced
30 switch ( role ) |
30 switch ( role ) |
31 { |
31 { |
32 case Hb::ItemTypeRole: |
32 case Hb::ItemTypeRole: |
33 return QVariant( Hb::SeparatorItem ); |
33 return QVariant( Hb::SeparatorItem ); |
34 case Qt::DisplayRole: |
34 case Qt::DisplayRole: |
35 return QVariant(qtTrId("Details")); |
35 return QVariant(hbTrId("txt_phob_subtitle_details")); |
36 default: |
36 default: |
37 return QVariant(); |
37 return QVariant(); |
38 } |
38 } |
39 } |
39 } |
40 void CntEditViewSeparator::activated() |
40 void CntEditViewSeparator::activated(CntEditViewItemCallback* interface) |
41 { |
41 { |
|
42 Q_UNUSED( interface ); |
42 } |
43 } |
43 |
44 |
44 void CntEditViewSeparator::longPressed(const QPointF &coords) |
45 void CntEditViewSeparator::longPressed(const QPointF &coords, CntEditViewItemCallback* interface) |
45 { |
46 { |
|
47 Q_UNUSED( interface ); |
46 Q_UNUSED( coords ); |
48 Q_UNUSED( coords ); |
47 } |
49 } |