Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKornél Pál <kornelpal@gmail.com>2005-05-27 22:30:19 +0400
committerKornél Pál <kornelpal@gmail.com>2005-05-27 22:30:19 +0400
commit06fdd0f782073c67037fad8d1ecff4e4d6c16504 (patch)
treeb3d27cd9db738b119abebe6880ace45e00e95d0b /mcs/class/System/System.Timers/Timer.cs
parent1d6e1f0d2db5dd4a0a8a50879ed1ca5aa76ab2f8 (diff)
Fixed bug #75068
svn path=/trunk/mcs/; revision=45121
Diffstat (limited to 'mcs/class/System/System.Timers/Timer.cs')
-rw-r--r--mcs/class/System/System.Timers/Timer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System/System.Timers/Timer.cs b/mcs/class/System/System.Timers/Timer.cs
index 62bfb336b29..5e9653e2faa 100644
--- a/mcs/class/System/System.Timers/Timer.cs
+++ b/mcs/class/System/System.Timers/Timer.cs
@@ -131,7 +131,7 @@ namespace System.Timers
public void Close ()
{
- StopTimer ();
+ Enabled = false;
}
public void EndInit ()