equal
deleted
inserted
replaced
470 *(backupPropertyValues[propId]) = 1; |
470 *(backupPropertyValues[propId]) = 1; |
471 } |
471 } |
472 break; |
472 break; |
473 |
473 |
474 case EWidgetPropTypeInt: |
474 case EWidgetPropTypeInt: |
475 TLex toInt( value->Des() ); |
475 { |
476 TInt k; |
476 TLex toInt( value->Des() ); |
477 if ( KErrNone != toInt.Val( k ) ) |
477 TInt k; |
478 { |
478 if ( KErrNone != toInt.Val( k ) ) |
479 User::Leave( KErrCorrupt ); |
479 { |
480 } |
480 User::Leave( KErrCorrupt ); |
481 if ( propId == EBlanketPermGranted ) |
481 } |
482 backupBlanketPerm = k; |
482 if ( propId == EBlanketPermGranted ) |
|
483 backupBlanketPerm = k; |
|
484 } |
483 break; |
485 break; |
484 |
486 |
485 case EWidgetPropTypeString: |
487 case EWidgetPropTypeString: |
486 *(backupPropertyValues[propId]) = *value; |
488 *(backupPropertyValues[propId]) = *value; |
487 break; |
489 break; |