From 848d036162187700352aa4a7fc4c832e850e66c0 Mon Sep 17 00:00:00 2001 From: fcolin Date: Fri, 25 May 2007 12:13:34 +0000 Subject: correction d'un problème de gestion des accents dans IvyTabletPC reco remplacement de l'encoding ASCII par iso 8859-15 --- Ivy/IvyTCPStreamV3.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Ivy/IvyTCPStreamV3.cs') diff --git a/Ivy/IvyTCPStreamV3.cs b/Ivy/IvyTCPStreamV3.cs index 4eef12c..594f9de 100644 --- a/Ivy/IvyTCPStreamV3.cs +++ b/Ivy/IvyTCPStreamV3.cs @@ -24,9 +24,9 @@ namespace IvyBus internal IvyTCPStreamV3(Socket socket, IvyProtocol _receiver) : base ( socket ) { - output = new StreamWriter(this, Encoding.ASCII); + output = new StreamWriter(this, Ivy.ivyEncoding); output.NewLine = MSG_END.ToString(); - input = new StreamReader(this, Encoding.ASCII); + input = new StreamReader(this, Ivy.ivyEncoding); receiver = _receiver; } /* the protocol magic numbers */ -- cgit v1.1