equal
deleted
inserted
replaced
38 CaUninstallNotifierPrivate::~CaUninstallNotifierPrivate() |
38 CaUninstallNotifierPrivate::~CaUninstallNotifierPrivate() |
39 { |
39 { |
40 delete mUninstallObserver; |
40 delete mUninstallObserver; |
41 } |
41 } |
42 |
42 |
|
43 /*! |
|
44 Makes connections witch uninstall observer. |
|
45 */ |
43 void CaUninstallNotifierPrivate::makeConnect() |
46 void CaUninstallNotifierPrivate::makeConnect() |
44 { |
47 { |
|
48 } |
45 |
49 |
|
50 /*! |
|
51 Slot to cache and forward progress notification. |
|
52 */ |
|
53 void CaUninstallNotifierPrivate::progressChange(int componentId,int valueOfProgress){ |
46 } |
54 } |
|
55 |
|
56 /*! |
|
57 Returns last progress notification. |
|
58 */ |
|
59 QVariantMap CaUninstallNotifierPrivate::getLastNotification() |
|
60 { |
|
61 QVariantMap lastNote; |
|
62 lastNote.insert(uninstallNotifierComponentIdKey, 0); |
|
63 lastNote.insert(uninstallNotifierValueOfProgressKey, 0); |
|
64 return lastNote; |
|
65 } |