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:
authorSebastien Pouliot <sebastien@ximian.com>2005-10-18 20:06:09 +0400
committerSebastien Pouliot <sebastien@ximian.com>2005-10-18 20:06:09 +0400
commita01ded9bca6a66e6bca348f0d339aa8177404cf9 (patch)
tree5bf270fd07fd460980ed167b3d0f32e5a1374452 /mcs/class/System/Microsoft.Win32
parentac6e5dcfa2756e86802c24b80af52006f683ad48 (diff)
2005-10-18 Sebastien Pouliot <sebastien@ximian.com>
* TimerElapsedEventArgs.cs: Re-added [ComVisible (false)] attribute before NET_2_0. svn path=/trunk/mcs/; revision=51873
Diffstat (limited to 'mcs/class/System/Microsoft.Win32')
-rw-r--r--mcs/class/System/Microsoft.Win32/ChangeLog5
-rw-r--r--mcs/class/System/Microsoft.Win32/TimerElapsedEventArgs.cs4
2 files changed, 9 insertions, 0 deletions
diff --git a/mcs/class/System/Microsoft.Win32/ChangeLog b/mcs/class/System/Microsoft.Win32/ChangeLog
index 806e7e4fa89..a7cde807b63 100644
--- a/mcs/class/System/Microsoft.Win32/ChangeLog
+++ b/mcs/class/System/Microsoft.Win32/ChangeLog
@@ -1,3 +1,8 @@
+2005-10-18 Sebastien Pouliot <sebastien@ximian.com>
+
+ * TimerElapsedEventArgs.cs: Re-added [ComVisible (false)] attribute
+ before NET_2_0.
+
2005-10-17 Sebastien Pouliot <sebastien@ximian.com>
* IntranetZoneCredentialPolicy.cs: New. Implemented (2.0). This class
diff --git a/mcs/class/System/Microsoft.Win32/TimerElapsedEventArgs.cs b/mcs/class/System/Microsoft.Win32/TimerElapsedEventArgs.cs
index f6e90345395..40bcccd92ee 100644
--- a/mcs/class/System/Microsoft.Win32/TimerElapsedEventArgs.cs
+++ b/mcs/class/System/Microsoft.Win32/TimerElapsedEventArgs.cs
@@ -28,12 +28,16 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
+using System.Runtime.InteropServices;
using System.Security.Permissions;
namespace Microsoft.Win32 {
[PermissionSet (SecurityAction.LinkDemand, Unrestricted = true)]
[PermissionSet (SecurityAction.InheritanceDemand, Unrestricted = true)]
+#if ONLY_1_1
+ [ComVisible (false)]
+#endif
public class TimerElapsedEventArgs : System.EventArgs
{
System.IntPtr mytimerId;