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

ChangeLog « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 290fc659e98930343907d2e600253388c230264a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
2004-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TypeDescriptor.cs: when a component in componentTable is Disposed,
	remove it from the table.

Fri Jun 11 11:58:22 CEST 2004 Paolo Molaro <lupus@ximian.com>

	* LocalizableAttribute.cs, DesignerSerializationVisibilityAttribute.cs,
	DesignOnlyAttribute.cs: fix targets for attributes.

2004-05-05  Lluis Sanchez Gual <lluis@ximian.com>

	* BooleanConverter.cs: Improved ConverFrom method.

2004-04-28  Lluis Sanchez Gual <lluis@ximian.com>

	* TypeDescriptor.cs: Do not return attributes that have the same TypeID.
	This fixes bug #57655.

2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TypeDescriptor.cs: fixed ComponentInfo.GetAttributes(). Now it returns
	all the attributes, not just DesignerAttribute instances. nGallery
	complained.

2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>

	* BooleanConverter.cs: GetStandardValues must return an array of
	booleans, not an array of strings.

2004-04-16  Lluis Sanchez Gual <lluis@ximian.com>

	* ReflectionPropertyDescriptor.cs: Access internal PropertyInfo
	through GetPropertyInfo(). Take into account that a component may not
	be sited or not have some services.
	* TypeDescriptor.cs: GetTypeFromName():  Added null check for Site
	property.  Other minor fixes.

2004-04-16	Joerg Rosenkranz <joergr@voelcker.com>

	* TypeDescriptor.cs: Fixed implementation of GetConverter.
	  This fixes #57137.

2004-04-14  Lluis Sanchez Gual <lluis@ximian.com>

	* AttributeCollection.cs: Added new internal constructor.
	* DesignerAttribute.cs: Fixed property TypeId.
	* EventDescriptorCollection.cs: Added internal constructor. Added new
	  method Filter that removes events that do not have the specified
	  attributes.
	* MemberDescriptor.cs: Minor fixes.
	* PropertyDescriptor.cs: Implemented some missing methods.
	* PropertyDescriptorCollection.cs: Added internal constructor. Implemented
	  Sort methods.
	* ReferenceConverter.cs: Removed some TODOs.
	* SyntaxCheck.cs: Implemented CheckMachineName and CheckPath.
	* TypeDescriptor.cs: Implemented most of missing methods.
	
2004-04-08  Lluis Sanchez Gual  <lluis@ximian.com>

	* AmbientValueAttribute.cs, EnumConverter.cs, ListChangedEventArgs.cs: 
	  Removed unneded TODOs.
	* ComponentResourceManager.cs: Implemented ApplyResources.
	* EventDescriptorCollection.cs: Implemented several missing methods.
	* LicFileLicenseProvider.cs: Implemented.
	* MemberDescriptor.cs: Implemented some missing methods. Handle correctly
	  the creation of the Attribute list.
	* TypeConverter.cs: Use null as default value for attribute array parameter.

2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Win32Exception.cs: added 10024 (WSAEMFILE).

2004-04-05  Lluis Sanchez Gual  <lluis@ximian.com>

	* AttributeCollection.cs: Don't try to create a default attribute if the
	attribute type does not have a default constructor. Fix by Jon Wagner.
	This fixes #53898.

2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Win32Exception.cs: added ERROR_PATH_NOT_FOUND that reports the same
	message as ERROR_FILE_NOT_FOUND.

2004-03-17  Ivan Hamilton <ivan@chimerical.com.au>

	* LicenseManager.cs: Completed TODO.

2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Win32Exception.cs: use a switch instead of creating a hashtable when
	mapping from an error code to a message.

2003-11-22  Miguel de Icaza  <miguel@ximian.com>

	* PropertyDescriptorCollection.cs (Insert): Another one.

	* PropertyTabAttribute.cs (Equals): Avoid recurssion

2003-11-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* IComponent.cs: Added missing attribute

2003-11-12  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* ComponentResourceManager.cs: Added and partially implemented

2003-09-13  Duncan Mak  <duncan@ximian.com>

	Patch from Jörg Rosenkranz <joergr@voelcker.com>, this fixes the
	bugs described in bug #48351.

	* EnumConverter.cs (ConvertFrom): Removed the special handling for
	multiple values. This is done in Enum.Parse already.

	* TypeDescriptor.cs (GetConverter): Does not work for enumeration
	types because EnumConverter does not have a default
	constructor. Fixed by changing the special handling for
	enumeration types.

2003-08-31  Jerome Laban <jlaban@wanadoo.fr>
        * Container.cs: A site without name cannot be duplicate.

2003-07-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Win32Exception.cs: added message for 10054.

2003-07-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* CategoryAttribute.cs: Added localization support

2003-07-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* IComponent.cs:
	* MarshalByValueComponent.cs: Reworked attributes based on the new Consts scheme

2003-07-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TypeDescriptor.cs: fixed GetConverter (type) for enumerations that
	have a TypeConverter. Fixes bug #46397.

2003-07-14 Jerome Laban <jlaban@wanadoo.fr>

	* IComponent.cs: Removed duplicate Designer attribute.

2003-07-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* Component.cs: Implementation added
	* Container.cs: Implementation added
	* MarshalByValueComponent.cs: Implementation added
	* ReferenceConverter.cs: Small addition for future implementation

2003-07-10  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* TypeConverter.cs: Implemented missing methods
	* TypeDescriptor.cs: Redirections added

2003-07-05  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* EnumConverter.cs: Fixed signature
	* EventDescriptorCollection.cs: Fixed signature
	* InheritanceLevel.cs: Fixed enum values; little restyling
	* License.cs: Removed undefined member
	* LicenseManager.cs: Fixed signature, little implementation added
	* PropertyDescriptorCollection.cs: Removed unused field (fixes last remaining compiler warning in this namespace)
	* WarningException.cs: Removed wrong attribute
	* Win32Exception.cs: Added missing attribute

2003-07-02  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* AttributeCollection.cs: Fixed public members
	* BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature
	* BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines
	* CategoryAttribute.cs: Changed public fields to properties
	* EnumConverter.cs: Added and implemented missing properties, improved implementation
	* EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug
	* PropertyDescriptorCollection.cs: Fixed public members
	* ReferenceConverter.cs: Implementation added
	* SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions
	* TypeDescriptor.cs: Implementations added
	
2003-07-02  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* ISite.cs: Fixed attributes, fixed header
	* ITypeDescriptorContext.cs: Fixed attributes, formatting corrections
	* WarningException.cs: Fixed attributes, formatting corrections
	* AttributeCollection.cs: Fixed attributes
	* DesignerSerializationVisibility.cs: Fixed attributes
	* TypeConverter.cs: Fixed attributes
	
	* MarshalByValueComponent.cs:
	* IComponent.cs: Fixed attributes, supports .Net 1.0 and 1.1
	
	* DescriptionAttribute.cs: 
	* DesignerCategoryAttribute.cs:
	* DoubleConverter.cs:
	* EditorBrowsableAttribute.cs:
	* EventDescriptorCollection.cs:
	* PropertyChangedEventHandler.cs:
	* RefreshEventArgs.cs:
	* StringConverter.cs:
	* DefaultValueAttribute.cs: Reformatted following style guidelines
	
	* License.cs: Removed unused MonoTODOs
	* LicenseContext.cs: Implemented
	* LicenseException.cs: Implemented
	* LicenseProvider.cs: Removed unused MonoTODOs and unneccesary Finalizer
	* LicenseUsageMode.cs: Fixed enum
	* RefreshProperties.cs: Fixed enum
	* LicFileLicenseProvider.cs: Implementation added
	* ExtenderProvidedPropertyAttribute.cs: Implementation added, formatting corrections
	* ExpandableObjectConverter.cs: Implemented
	* ComponentConverter.cs: Implemented
	
2003-06-23  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* DesignerAttribute.cs: Fixed AttributeUsage, implementation errors,
	better Hashcode generation
	* EditorAttribute.cs: Fixed AttributeUsage, implementation errors,
	better Hashcode generation
	* LicenseContext.cs: Added and implemented missing property
	* ListBindableAttribute.cs: Simplified implementation, removed
	unneccessary data.
	* ReadOnlyAttribute.cs: Better Hashcode generation
	* RunInstallerAttribute.cs: Better Hashcode generation, more robust
	Equals check.

	* LicenseProviderAttribute.cs: Fixed AttributeUsage, indentation
	* ProvidePropertyAttribute.cs: Fixed AttributeUsage
	* ToolboxItemFilterAttribute.cs: Fixed AttributeUsage

	* MarshalByValueComponent.cs:
	* IContainer.cs:
	* IComponent.cs: Added missing attribute(s)

2003-06-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AmbientValueAttribute.cs:
	* ArrayConverter.cs:
	* BaseNumberConverter.cs:
	* BindableAttribute.cs:
	* BooleanConverter.cs:
	* BrowsableAttribute.cs:
	* ByteConverter.cs:
	* CategoryAttribute.cs:
	* CharConverter.cs:
	* CollectionConverter.cs:
	* Component.cs:
	* ComponentCollection.cs:
	* ComponentEditor.cs:
	* Container.cs:
	* CultureInfoConverter.cs:
	* DateTimeConverter.cs:
	* DecimalConverter.cs:
	* DefaultEventAttribute.cs:
	* DefaultPropertyAttribute.cs:
	* DefaultValueAttribute.cs:
	* DescriptionAttribute.cs:
	* DesignOnlyAttribute.cs:
	* DesignTimeVisibleAttribute.cs:
	* DesignerCategoryAttribute.cs:
	* DesignerSerializationVisibilityAttribute.cs:
	* DoubleConverter.cs:
	* EditorBrowsableAttribute.cs:
	* EventDescriptor.cs:
	* EventDescriptorCollection.cs:
	* ExpandableObjectConverter.cs:
	* ExtenderProvidedPropertyAttribute.cs: New file.
	* GuidConverter.cs:
	* IComNativeDescriptorHandler.cs:
	* IComponent.cs:
	* ImmutableObjectAttribute.cs:
	* InheritanceAttribute.cs:
	* InheritanceLevel.cs:
	* InstallerTypeAttribute.cs:
	* Int16Converter.cs:
	* Int32Converter.cs:
	* Int64Converter.cs:
	* InvalidEnumArgumentException.cs:
	* LicenseProviderAttribute.cs:
	* LocalizableAttribute.cs:
	* MarshalByValueComponent.cs:
	* MemberDescriptor.cs:
	* MergablePropertyAttribute.cs:
	* NotifyParentPropertyAttribute.cs:
	* ParenthesizePropertyNameAttribute.cs:
	* PropertyDescriptor.cs:
	* PropertyDescriptorCollection.cs:
	* PropertyTabAttribute.cs:
	* ProvidePropertyAttribute.cs:
	* RecommendedAsConfigurableAttribute.cs:
	* RefreshPropertiesAttribute.cs:
	* SByteConverter.cs:
	* SingleConverter.cs:
	* TimeSpanConverter.cs:
	* ToolboxItemFilterAttribute.cs:
	* TypeConverter.cs:
	* TypeConverterAttribute.cs:
	* TypeDescriptor.cs:
	* TypeListConverter.cs:
	* UInt16Converter.cs:
	* UInt32Converter.cs:
	* UInt64Converter.cs: implementation and fixes by Andreas Nahr
	(A-Soft@A-SoftTech.com).

2003-06-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* IExtenderProvider.cs: mono-stylized.
	* IComNativeDescriptorHandler.cs:
	* SyntaxCheck.cs: new files from Andreas Nahr.

2003-03-20  Dick Porter  <dick@ximian.com>

	* Win32Exception.cs: Made the fallback error more useful by
	reporting the error number

2003-03-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MarshalByValueComponent.cs: removed a monotodo.

2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Win32Exception.cs: added error code 2.

2003-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Win32Exception.cs: implemented GetObjectData ().

2003-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RunInstallerAttribute.cs: New file.

2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Win32Exception.cs: added 10065 (WSA_EHOSTUNREACH).

2003-02-05  Alan Tam <Tam@SiuLung.com>

 	* DesignedCategoryAttribute.cs: Implemented DesignerCategoryAttribute

2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BrowsableAttribute.cs: this attribute applies to All. Since the fix
	to bug #37380, mcs complained about this when compiling System.Data.

2003-01-08  Dick Porter  <dick@ximian.com>

	* Win32Exception.cs (ComponentModel): Added EWOULDBLOCK

2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TypeDescriptor.cs: use ICustomTypeDescriptor if the component
	implements it. It's done for GetProperties and should be done for the
	rest of methods present in ICustomTypeDescriptor.

2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TypeDescriptor.cs: moved code from GetProperties (object) to (Type).

2002-11-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DefaultValueAttribute.cs: the attribute applies to All.

2002-11-19  Duncan Mak  <duncan@ximian.com>

	* DesignerAttribute.cs:
	* EditorAttribute: Style changes. Gonzalo committed the build
	fixes before I did. 

2002-11-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DesignerAttribute.cs:
	* EditorAttribute.cs: fixed the build.

2002-11-19  Alejandro Sánchez Acosta <raciel@es.gnu.org>

	* EditorAttribute: implemented.
	* DesignerAttribute: implemented.

2002-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Win32Exception.cs: added 10107 -> WASSYSCALLFAILURE.

2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListBindableAttribute.cs: implemented.

2002-11-02  Duncan Mak  <duncan@ximian.com>

	* InvalidEnumArgumentException.cs: Added.

2002-10-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* EventHandlerList.cs: fixed bug #29535.

2002-10-03  Dick Porter  <dick@ximian.com>

	* Win32Exception.cs: Added ETIMEDOUT

2002-09-30  Dick Porter  <dick@ximian.com>

	* Win32Exception.cs: Sorted the errors, added EINPROGRESS

2002-09-17  Asier Llano Palacios <asierllano@infonegocio.com>

	* CancelEventArgs.cs
	* WarningException.cs
	* CancelEventHandler.cs
	* PropertyChangedEventHandler.cs
	* IExtenderProvider.cs: Implemented

2002-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Component.cs:
	* ComponentCollection.cs:
	* Container.cs:
	* MarshalByValueComponent.cs: IDisposable fixes.

2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BindableSupport.cs:
	* Component.cs:
	* EventDescriptorCollection.cs:
	* ITypeDescriptorContext.cs:
	* TypeConverter.cs:
	* TypeDescriptor.cs: class status based fixes.
	
	* StringConverter.cs: implemented a couple of methods.

2002-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* EnumConverter.cs: new file.
	
	* TypeConverter.cs: implemented a few simple methods.

	* TypeDescriptor.cs:
	(GetConverter): initial support for converters of well-known types.

2002-07-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DerivedPropertyDescriptor.cs: New file. Internal class.

	* PropertyDescriptorCollection.cs: almost fully implemented.

	* TypeDescriptor.cs: implemented a couple of GetProperties ().

Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* Component.cs: don't die if Disposed is null.

2002-07-22  Tim Coleman <tim@timcoleman.com>
	* RecommendedAsConfigurableAttribute.cs: new file added
		for System.Web.Services build

2002-07-22  Tim Coleman <tim@timcoleman.com>
	* ExpandableObjectConverter.cs: Fix error with constructor

2002-07-22  Tim Coleman <tim@timcoleman.com>
	* TypeConverter.cs: Fixed bad stubb function
		GetConvertToException ()

2002-07-22  Tim Coleman <tim@timcoleman.com>
	* ComponentCollection.cs: Added reference to
		ReadOnlyCollectionBase to make sure
		that we inherit the appropriate methods.
		Not sure why the Dispose() method is
		required, but left for now.

2002-07-22  Tim Coleman <tim@timcoleman.com>
	* TypeConverter.cs: Added new stubbs
	* BindableAttribute.cs: Added
	* BindableSupport.cs: Added
	* NotifyParentPropertyAttribute.cs: Added
	* ExpandableObjectConverter.cs: Added

2002-07-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MemberDescriptor.cs: implemented Attributes and Category.

	* PropertyDescriptor.cs: implemented Converter. Declared GetValue ().

	* PropertyDescriptorCollection.cs: fixed indexers declaration.

	* ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
	fixed value for Yes.

	* ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.

	* TypeConverter.cs: added SimplePropertyDescriptor class.

2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ToolboxItemAttribute.cs: New file.

2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DefaultEventAttribute.cs: new file.

2002-07-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AttributeCollection.cs: fixlet.

2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AttributeCollection.cs: finished implementation.
	* TypeDescriptor.cs: implemented GetAttributes (object).

2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AttributeCollection.cs: initialize member variables.

	* RefreshEventArgs.cs: implemented.
	* RefreshEventHandler.cs: New file.

	* TypeDescriptor.cs: fully stubbed out the remaining method.

2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DefaultPropertyAttribute.cs: New file.

2002-06-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TypeConverter.cs: flushed local changes.

2002-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* StringConverter.cs: stubbed out.
	* TypeConverter.cs: stubbed the rest out and added some implementation.

	Five errors left when compiling System.Web in linux.

2002-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TypeConverterAttribute.cs: attribute used by 
	TypeDescriptor.Getconverter ().

	* TypeDescriptor.cs:  implemented GetConverter in the right way.

2002-06-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TypeConverter.cs:
	* ITypeDescriptorContext.cs:
	* TypeDescriptor.cs: implemented minimal set of features needed by xsp,
	which uses ColorConverter.

2002-05-12  Daniel Morgan <danmorg@sc.rr.com>

	* IComponent.cs
	* ISite.cs: added using System
	 
	* MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
	to // TODOs and added using System.  The throwing of the exceptions prevented
	System.Data from running.

2002-05-10  Rodrigo Moya <rodrigo@ximian.com>

	* EventDescriptorCollection.cs (this[index]): call eventList[index],
	not this[index], which issues an 'ambigous call' error on Linux.

2002-05-07  Rodrigo Moya <rodrigo@ximian.com>

	* EventDescriptor.cs: added missing constructors.

	* EventDescriptorCollection.cs: fixed interface methods implementation

	* IDataErrorInfo.cs:
	* IEditableObject.cs: new interfaces.

2002-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* System.ComponentModel/AttributeCollection.cs: added a cast to make
	it compile.

2002-05-03  Rodrigo Moya <rodrigo@ximian.com>

	* AttributeCollection.cs:
	* EventDescriptor.cs:
	* EventDescriptorCollection.cs:
	* ICustomTypeDescriptor.cs: new files.

2002-05-01  Duncan Mak  <duncan@ximian.com>

	* ListChangedType.cs: 
	* ListChangedEventHandler.cs: 
	* ListChangedEventArgs.cs: Added to fix build.

2002-05-01  Miguel de Icaza  <miguel@ximian.com>

	* PropertyDescriptorCollection.cs: Added the IList explicit
	implementation methods. 

	lots of bug fixes to get the build to compile again.

2002-05-01  Duncan Mak  <duncan@ximian.com>

	* ListSortDirection.cs: EnumChecked.

2002-05-01  Rodrigo Moya <rodrigo@ximian.com>

	* ListSortDirection.cs: new enumeration. Please, somebody run
	EnumCheck on it, as I don't have a windows machine.

	* PropertyDescriptorCollection.cs: new class.

	* ITypedList.cs:
	* IBindingList.cs: new interfaces.

2002-04-28  Duncan Mak  <duncan@ximian.com>

	* CollectionChangeAction.cs: Changed enum layout to fit the MS
	implementation. Please use EnumCheck!

2002-04-28  Rodrigo Moya <rodrigo@ximian.com>

	* CollectionChangeAction.cs: new enumeration.

	* CategoryAttribute.cs: moved the 'return' keyword to the
	end of the method, to avoid compilation errors on Linux for
	all CategoryAttribute properties.

2002-04-28  Rodrigo Moya <rodrigo@ximian.com>

	* IListSource.cs:
	* ISupportInitialize.cs:
	* MarshalByValueComponent.cs: new stubs, needed for System.Data
	compilation.

	* PropertyChangedEventArgs.cs:
	* CollectionChangeEventHandler.cs:
	* CollectionChangeEventArgs.cs: implemented.

2002-04-28  Lawrence Pit <loz@cable.a2000.nl>

	* Added error code 11001 to Win32Exception, used by Dns.c

2002-04-04  Dick Porter  <dick@ximian.com>

	* ISynchronizeInvoke.cs: Needed by Process

2002-01-23  Dick Porter  <dick@ximian.com>

	* Win32Exception.cs: implement, with support for looking up
	runtime errors.

2002-01-17  Miguel de Icaza  <miguel@ximian.com>

	* Win32Exception.cs: Add.

2002-01-05  Ravi Pratap  <ravi@ximian.com>

	* CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.

	* Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.

2001-10-27  Miguel de Icaza  <miguel@ximian.com>

	* DesignerSerializationVisibilityAttribute.cs: Implemented.

	* DesignerSerializationVisibility.cs: New enumeration.

	* LocalizableAttribute.cs: Implemented.

	* BrowsableAttribute.cs: Implemented.

	* DesignOnlyAttribute.cs: Implemented.

	* DescriptionAttribute.cs: Implement.

	* MemberDescriptor.cs: Implemented.

	* CategoryAttribute.cs: implemented.

2001-08-21  Nick Drochak <ndrochak@gol.com>

	* Component.cs: Eliminated compile errors by removing redundant fields and
	using the ISite member instead.  Also raised the Disposed event, but not
	sure if it's correct now.  Look for FIXME in the comments.

2001-08-02  Miguel de Icaza  <miguel@ximian.com>

	* EventHandlerList.cs: New file.

	* Container.cs, Component.cs, IContainer.cs, IComponent.cs,
	ComponentCollection.cs, ISite.cs: New classes