equal
deleted
inserted
replaced
478 if(ret == 1) |
478 if(ret == 1) |
479 { |
479 { |
480 |
480 |
481 RSyncMLDevManJob dmJob; |
481 RSyncMLDevManJob dmJob; |
482 |
482 |
483 TInt IAPID = -1; |
483 TInt IAPID = -2; |
484 TBuf<10> genalertap,temp; |
484 TBuf<10> genalertap,temp; |
485 genalertap.Zero(); |
485 genalertap.Zero(); |
486 temp.Zero(); |
486 temp.Zero(); |
487 genalertap.Append(KNSmlDMJobIapPrefix); |
487 genalertap.Append(KNSmlDMJobIapPrefix); |
488 temp.Num(iapid);//Decimal Iap |
488 temp.Num(iapid);//Decimal Iap |
489 if( temp.Length() <= KNSmlHalfTransportIdLength && |
489 if( temp.Length() <= KNSmlHalfTransportIdLength && |
490 iapid > KErrNotFound) |
490 iapid >= -2) |
491 { |
491 { |
492 genalertap.AppendFill('0',KNSmlHalfTransportIdLength-temp.Length()); |
492 genalertap.AppendFill('0',KNSmlHalfTransportIdLength-temp.Length()); |
493 genalertap.Append(temp); |
493 genalertap.Append(temp); |
494 TLex gavalue(genalertap); |
494 TLex gavalue(genalertap); |
495 gavalue.Val(IAPID); |
495 gavalue.Val(IAPID); |