| Start/ | End/ | |||
| True | False | - | Line | Source |
| 1 | /* | |||
| 2 | * UTSlot.cpp | |||
| 3 | * | |||
| 4 | * Created on: Aug 23, 2010 | |||
| 5 | * Author: t4sun | |||
| 6 | */ | |||
| 7 | ||||
| 8 | #include "UTSlot.h" | |||
| 9 | ||||
| Top | ||||
| 1 | 1 | 10 | UTSlot::UTSlot() | |
| 11 | { | |||
| 12 | // TODO Auto-generated constructor stub | |||
| 13 | iDataChangedSlotCalled = EFalse; | |||
| 14 | iDeactiveSlotCalled = EFalse; | |||
| 15 | } | |||
| 16 | ||||
| Top | ||||
| 0 | 0 | - | 17 | UTSlot::~UTSlot() |
| 18 | { | |||
| 19 | // TODO Auto-generated destructor stub | |||
| 20 | } | |||
| 21 | ||||
| Top | ||||
| 1 | 1 | 22 | void UTSlot::dataChangedSlot() | |
| 23 | { | |||
| 24 | iDataChangedSlotCalled = ETrue; | |||
| 25 | } | |||
| 26 | ||||
| Top | ||||
| 1 | 1 | 27 | void UTSlot::deactivateSlot() | |
| 28 | { | |||
| 29 | iDeactiveSlotCalled = ETrue; | |||
| 30 | } | |||
| ***TER 75% (3/4) of SOURCE FILE utslot.cpp | ||||