equal
deleted
inserted
replaced
14 * |
14 * |
15 * Description: |
15 * Description: |
16 * Private Implementation of Relation Manager |
16 * Private Implementation of Relation Manager |
17 * |
17 * |
18 */ |
18 */ |
|
19 #include <qdebug.h> |
19 |
20 |
20 #include "smfrelationmgr.h" |
21 #include "smfrelationmgr.h" |
21 #include "smfrelationmgr_p.h" |
22 #include "smfrelationmgr_p.h" |
22 |
23 |
23 #ifdef Q_OS_SYMBIAN |
24 #ifdef Q_OS_SYMBIAN |
235 int maxAlloc = 100; |
236 int maxAlloc = 100; |
236 uint count; |
237 uint count; |
237 m_dataFromDSM = m_SmfClientPrivate->sendDSMSyncRequest(SmfRelationCount,m_dataForDSM,err,maxAlloc); |
238 m_dataFromDSM = m_SmfClientPrivate->sendDSMSyncRequest(SmfRelationCount,m_dataForDSM,err,maxAlloc); |
238 if(err == SmfNoError) |
239 if(err == SmfNoError) |
239 { |
240 { |
240 QDataStream readStream(&m_dataForDSM,QIODevice::ReadOnly); |
241 QDataStream readStream(&m_dataFromDSM,QIODevice::ReadOnly); |
241 readStream>>count; |
242 readStream>>count; |
242 } |
243 } |
243 else |
244 else |
244 { |
245 { |
245 User::Panic(_L("DSM err = "),err); |
246 User::Panic(_L("DSM err = "),err); |