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:
Diffstat (limited to 'mcs/class/System/System.ComponentModel/ListChangedEventArgs.cs')
-rwxr-xr-xmcs/class/System/System.ComponentModel/ListChangedEventArgs.cs53
1 files changed, 0 insertions, 53 deletions
diff --git a/mcs/class/System/System.ComponentModel/ListChangedEventArgs.cs b/mcs/class/System/System.ComponentModel/ListChangedEventArgs.cs
deleted file mode 100755
index 6004144b880..00000000000
--- a/mcs/class/System/System.ComponentModel/ListChangedEventArgs.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-//
-// System.ComponentModel.ListChangedEventArgs.cs
-//
-// Author: Duncan Mak (duncan@ximian.com)
-//
-// (C) Ximian, Inc.
-//
-
-using System.ComponentModel;
-
-namespace System.ComponentModel {
- public class ListChangedEventArgs : EventArgs
- {
-
- ListChangedType changedType;
- int oldIndex;
- int newIndex;
-
- public ListChangedEventArgs (ListChangedType listChangedType,
- int newIndex)
- {
- this.changedType = listChangedType;
- this.newIndex = newIndex;
- }
-
- [MonoTODO]
- public ListChangedEventArgs (ListChangedType listChangedType,
- PropertyDescriptor propDesc)
- {
- this.changedType = listChangedType;
- }
-
- public ListChangedEventArgs (ListChangedType listChangedType,
- int newIndex, int oldIndex)
- {
- this.changedType = listChangedType;
- this.newIndex = newIndex;
- this.oldIndex = oldIndex;
- }
-
- public ListChangedType ListChangedType {
- get { return changedType; }
- }
-
- public int OldIndex {
- get { return oldIndex; }
- }
-
- public int NewIndex {
- get { return newIndex; }
- }
- }
-}