diff options
author | fcolin | 2007-02-01 09:47:35 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:47:35 +0000 |
commit | 2e0ffe8b6d65c791dea4ecf512ffb72aa0df63b9 (patch) | |
tree | ec631e8d51448d71186d01fe8bb794f199c8fce3 /CSharp/Ivy | |
parent | 10d84ce86f12a108b644ea15c9d636af0a313985 (diff) | |
download | ivy-csharp-2e0ffe8b6d65c791dea4ecf512ffb72aa0df63b9.zip ivy-csharp-2e0ffe8b6d65c791dea4ecf512ffb72aa0df63b9.tar.gz ivy-csharp-2e0ffe8b6d65c791dea4ecf512ffb72aa0df63b9.tar.bz2 ivy-csharp-2e0ffe8b6d65c791dea4ecf512ffb72aa0df63b9.tar.xz |
Utilisateur : Fcolin Date : 30/06/06 Heure : 16:43 Archivé dans $/CSharp/Ivy/IvyPPC Commentaire: (vss 50)
Diffstat (limited to 'CSharp/Ivy')
-rw-r--r-- | CSharp/Ivy/Ivy/IvyClient.cs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/CSharp/Ivy/Ivy/IvyClient.cs b/CSharp/Ivy/Ivy/IvyClient.cs index 21f14f4..9a67b3d 100644 --- a/CSharp/Ivy/Ivy/IvyClient.cs +++ b/CSharp/Ivy/Ivy/IvyClient.cs @@ -40,12 +40,12 @@ namespace IvyBus }
}
-
- public StringCollection Regexps
+
+ public List<string> Regexps
{
get
{
- StringCollection tab = new StringCollection();
+ List<string> tab = new List<string>();
lock (bindings)
{
foreach (IvyBindingBase bind in bindings.Values)
@@ -400,7 +400,11 @@ namespace IvyBus bus.Stop();
close(false);
if (ev.ForceExit)
+#if (PocketPC)
+ System.Windows.Forms.Application.Exit();
+#else
System.Environment.Exit(0);
+#endif
}
void IvyProtocol.TokenBye(ushort err, string arg)
{
|