mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-13 20:15:22 +02:00
[204796] Bugfix for VT100TerminalControl#setEncoding()
This commit is contained in:
parent
b5fa4bf7c1
commit
c5e996cc79
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
|
||||||
// TODO or better use the local default encoding?
|
// TODO or better use the local default encoding?
|
||||||
// encoding = defaultEncoding;
|
// encoding = defaultEncoding;
|
||||||
}
|
}
|
||||||
fInputStreamReader = new InputStreamReader(fInputStream, fEncoding);
|
fInputStreamReader = new InputStreamReader(fInputStream, encoding);
|
||||||
// remember encoding if above didn't throw an exception
|
// remember encoding if above didn't throw an exception
|
||||||
fEncoding = encoding;
|
fEncoding = encoding;
|
||||||
fTerminalText.setInputStreamReader(fInputStreamReader);
|
fTerminalText.setInputStreamReader(fInputStreamReader);
|
||||||
|
|
Loading…
Add table
Reference in a new issue