equal
deleted
inserted
replaced
5991 { |
5991 { |
5992 if (iErrorVal >= 0) LeaveIfErr(KErrArgument, _L("Non-negative value %d passed to error command"), iErrorVal); |
5992 if (iErrorVal >= 0) LeaveIfErr(KErrArgument, _L("Non-negative value %d passed to error command"), iErrorVal); |
5993 |
5993 |
5994 if (iErrorText) |
5994 if (iErrorText) |
5995 { |
5995 { |
5996 LeaveIfErr(iErrorVal, *iErrorText); |
5996 LeaveIfErr(iErrorVal, _L("%S"), iErrorText); |
5997 } |
5997 } |
5998 else |
5998 else |
5999 { |
5999 { |
6000 User::Leave(iErrorVal); |
6000 User::Leave(iErrorVal); |
6001 } |
6001 } |