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:
authorMiguel de Icaza <miguel@gnome.org>2005-11-14 04:21:41 +0300
committerMiguel de Icaza <miguel@gnome.org>2005-11-14 04:21:41 +0300
commit0eb6b8981e271cea5d4b20ecb846bf55e9717d3c (patch)
treef2f6fc6da418b5cfc2228c97f22f5066f6772d90 /mcs/class/System/Microsoft.Win32
parent66ba4e5957d191ecf87a056a0c56706296c440d1 (diff)
It does not hurt to keep this with nothing
svn path=/trunk/mcs/; revision=52997
Diffstat (limited to 'mcs/class/System/Microsoft.Win32')
-rw-r--r--mcs/class/System/Microsoft.Win32/SystemEvents.cs48
1 files changed, 24 insertions, 24 deletions
diff --git a/mcs/class/System/Microsoft.Win32/SystemEvents.cs b/mcs/class/System/Microsoft.Win32/SystemEvents.cs
index 306381cf33c..fc6d6154cb0 100644
--- a/mcs/class/System/Microsoft.Win32/SystemEvents.cs
+++ b/mcs/class/System/Microsoft.Win32/SystemEvents.cs
@@ -85,28 +85,28 @@ namespace Microsoft.Win32 {
[MonoTODO]
public static event System.EventHandler DisplaySettingsChanged
{
- add { throw new System.NotImplementedException ();}
- remove { throw new System.NotImplementedException ();}
+ add { }
+ remove { }
}
#if NET_2_0
[MonoTODO]
public static event EventHandler DisplaySettingsChanging {
- add { throw new NotImplementedException (); }
- remove { throw new NotImplementedException (); }
+ add { }
+ remove { }
}
#endif
[MonoTODO]
public static event System.EventHandler EventsThreadShutdown
{
- add { throw new System.NotImplementedException ();}
- remove { throw new System.NotImplementedException ();}
+ add { }
+ remove { }
}
[MonoTODO]
public static event System.EventHandler InstalledFontsChanged
{
- add { throw new System.NotImplementedException ();}
- remove { throw new System.NotImplementedException ();}
+ add { }
+ remove { }
}
[MonoTODO]
@@ -117,49 +117,49 @@ namespace Microsoft.Win32 {
#endif
public static event System.EventHandler LowMemory
{
- add { throw new System.NotImplementedException ();}
- remove { throw new System.NotImplementedException ();}
+ add { }
+ remove { }
}
[MonoTODO]
public static event System.EventHandler PaletteChanged
{
- add { throw new System.NotImplementedException ();}
- remove { throw new System.NotImplementedException ();}
+ add { }
+ remove { }
}
[MonoTODO]
public static event PowerModeChangedEventHandler PowerModeChanged
{
- add { throw new System.NotImplementedException ();}
- remove { throw new System.NotImplementedException ();}
+ add { }
+ remove { }
}
[MonoTODO]
public static event SessionEndedEventHandler SessionEnded
{
- add { throw new System.NotImplementedException ();}
- remove { throw new System.NotImplementedException ();}
+ add { }
+ remove { }
}
[MonoTODO]
public static event SessionEndingEventHandler SessionEnding
{
- add { throw new System.NotImplementedException ();}
- remove { throw new System.NotImplementedException ();}
+ add { }
+ remove { }
}
#if NET_2_0
[MonoTODO]
public static event SessionSwitchEventHandler SessionSwitch {
- add { throw new NotImplementedException (); }
- remove { throw new NotImplementedException (); }
+ add { }
+ remove { }
}
#endif
[MonoTODO]
public static event System.EventHandler TimeChanged
{
- add { throw new System.NotImplementedException ();}
- remove { throw new System.NotImplementedException ();}
+ add { }
+ remove { }
}
public static event TimerElapsedEventHandler TimerElapsed;
@@ -174,8 +174,8 @@ namespace Microsoft.Win32 {
[MonoTODO]
public static event UserPreferenceChangingEventHandler UserPreferenceChanging
{
- add { throw new System.NotImplementedException ();}
- remove { throw new System.NotImplementedException ();}
+ add { }
+ remove { }
}
}
}