equal
deleted
inserted
replaced
100 VA_LIST list; |
100 VA_LIST list; |
101 VA_START(list, aFmt); |
101 VA_START(list, aFmt); |
102 TBuf<0x100> buf; |
102 TBuf<0x100> buf; |
103 buf.AppendFormatList(aFmt, list, &overflow); |
103 buf.AppendFormatList(aFmt, list, &overflow); |
104 |
104 |
105 if (iUnderlyingConsole) |
105 if (UnderlyingConsole()) |
106 { |
106 { |
107 Message(EInformation, buf); |
107 Message(EInformation, buf); |
108 // when using a console, the accept can be cancelled by hitting ctrl-c |
108 // when using a console, the accept can be cancelled by hitting ctrl-c |
109 return KErrNotSupported; |
109 return KErrNotSupported; |
110 } |
110 } |