ChangeLog 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  1. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  2. * TypeDescriptor.cs: fixed ComponentInfo.GetAttributes(). Now it returns
  3. all the attributes, not just DesignerAttribute instances. nGallery
  4. complained.
  5. 2004-04-21 Lluis Sanchez Gual <[email protected]>
  6. * BooleanConverter.cs: GetStandardValues must return an array of
  7. booleans, not an array of strings.
  8. 2004-04-16 Lluis Sanchez Gual <[email protected]>
  9. * ReflectionPropertyDescriptor.cs: Access internal PropertyInfo
  10. through GetPropertyInfo(). Take into account that a component may not
  11. be sited or not have some services.
  12. * TypeDescriptor.cs: GetTypeFromName(): Added null check for Site
  13. property. Other minor fixes.
  14. 2004-04-16 Joerg Rosenkranz <[email protected]>
  15. * TypeDescriptor.cs: Fixed implementation of GetConverter.
  16. This fixes #57137.
  17. 2004-04-14 Lluis Sanchez Gual <[email protected]>
  18. * AttributeCollection.cs: Added new internal constructor.
  19. * DesignerAttribute.cs: Fixed property TypeId.
  20. * EventDescriptorCollection.cs: Added internal constructor. Added new
  21. method Filter that removes events that do not have the specified
  22. attributes.
  23. * MemberDescriptor.cs: Minor fixes.
  24. * PropertyDescriptor.cs: Implemented some missing methods.
  25. * PropertyDescriptorCollection.cs: Added internal constructor. Implemented
  26. Sort methods.
  27. * ReferenceConverter.cs: Removed some TODOs.
  28. * SyntaxCheck.cs: Implemented CheckMachineName and CheckPath.
  29. * TypeDescriptor.cs: Implemented most of missing methods.
  30. 2004-04-08 Lluis Sanchez Gual <[email protected]>
  31. * AmbientValueAttribute.cs, EnumConverter.cs, ListChangedEventArgs.cs:
  32. Removed unneded TODOs.
  33. * ComponentResourceManager.cs: Implemented ApplyResources.
  34. * EventDescriptorCollection.cs: Implemented several missing methods.
  35. * LicFileLicenseProvider.cs: Implemented.
  36. * MemberDescriptor.cs: Implemented some missing methods. Handle correctly
  37. the creation of the Attribute list.
  38. * TypeConverter.cs: Use null as default value for attribute array parameter.
  39. 2004-04-08 Gonzalo Paniagua Javier <[email protected]>
  40. * Win32Exception.cs: added 10024 (WSAEMFILE).
  41. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  42. * AttributeCollection.cs: Don't try to create a default attribute if the
  43. attribute type does not have a default constructor. Fix by Jon Wagner.
  44. This fixes #53898.
  45. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  46. * Win32Exception.cs: added ERROR_PATH_NOT_FOUND that reports the same
  47. message as ERROR_FILE_NOT_FOUND.
  48. 2004-03-17 Ivan Hamilton <[email protected]>
  49. * LicenseManager.cs: Completed TODO.
  50. 2003-12-10 Gonzalo Paniagua Javier <[email protected]>
  51. * Win32Exception.cs: use a switch instead of creating a hashtable when
  52. mapping from an error code to a message.
  53. 2003-11-22 Miguel de Icaza <[email protected]>
  54. * PropertyDescriptorCollection.cs (Insert): Another one.
  55. * PropertyTabAttribute.cs (Equals): Avoid recurssion
  56. 2003-11-13 Andreas Nahr <[email protected]>
  57. * IComponent.cs: Added missing attribute
  58. 2003-11-12 Andreas Nahr <[email protected]>
  59. * ComponentResourceManager.cs: Added and partially implemented
  60. 2003-09-13 Duncan Mak <[email protected]>
  61. Patch from Jörg Rosenkranz <[email protected]>, this fixes the
  62. bugs described in bug #48351.
  63. * EnumConverter.cs (ConvertFrom): Removed the special handling for
  64. multiple values. This is done in Enum.Parse already.
  65. * TypeDescriptor.cs (GetConverter): Does not work for enumeration
  66. types because EnumConverter does not have a default
  67. constructor. Fixed by changing the special handling for
  68. enumeration types.
  69. 2003-08-31 Jerome Laban <[email protected]>
  70. * Container.cs: A site without name cannot be duplicate.
  71. 2003-07-22 Gonzalo Paniagua Javier <[email protected]>
  72. * Win32Exception.cs: added message for 10054.
  73. 2003-07-17 Andreas Nahr <[email protected]>
  74. * CategoryAttribute.cs: Added localization support
  75. 2003-07-17 Andreas Nahr <[email protected]>
  76. * IComponent.cs:
  77. * MarshalByValueComponent.cs: Reworked attributes based on the new Consts scheme
  78. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  79. * TypeDescriptor.cs: fixed GetConverter (type) for enumerations that
  80. have a TypeConverter. Fixes bug #46397.
  81. 2003-07-14 Jerome Laban <[email protected]>
  82. * IComponent.cs: Removed duplicate Designer attribute.
  83. 2003-07-13 Andreas Nahr <[email protected]>
  84. * Component.cs: Implementation added
  85. * Container.cs: Implementation added
  86. * MarshalByValueComponent.cs: Implementation added
  87. * ReferenceConverter.cs: Small addition for future implementation
  88. 2003-07-10 Andreas Nahr <[email protected]>
  89. * TypeConverter.cs: Implemented missing methods
  90. * TypeDescriptor.cs: Redirections added
  91. 2003-07-05 Andreas Nahr <[email protected]>
  92. * EnumConverter.cs: Fixed signature
  93. * EventDescriptorCollection.cs: Fixed signature
  94. * InheritanceLevel.cs: Fixed enum values; little restyling
  95. * License.cs: Removed undefined member
  96. * LicenseManager.cs: Fixed signature, little implementation added
  97. * PropertyDescriptorCollection.cs: Removed unused field (fixes last remaining compiler warning in this namespace)
  98. * WarningException.cs: Removed wrong attribute
  99. * Win32Exception.cs: Added missing attribute
  100. 2003-07-02 Andreas Nahr <[email protected]>
  101. * AttributeCollection.cs: Fixed public members
  102. * BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature
  103. * BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines
  104. * CategoryAttribute.cs: Changed public fields to properties
  105. * EnumConverter.cs: Added and implemented missing properties, improved implementation
  106. * EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug
  107. * PropertyDescriptorCollection.cs: Fixed public members
  108. * ReferenceConverter.cs: Implementation added
  109. * SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions
  110. * TypeDescriptor.cs: Implementations added
  111. 2003-07-02 Andreas Nahr <[email protected]>
  112. * ISite.cs: Fixed attributes, fixed header
  113. * ITypeDescriptorContext.cs: Fixed attributes, formatting corrections
  114. * WarningException.cs: Fixed attributes, formatting corrections
  115. * AttributeCollection.cs: Fixed attributes
  116. * DesignerSerializationVisibility.cs: Fixed attributes
  117. * TypeConverter.cs: Fixed attributes
  118. * MarshalByValueComponent.cs:
  119. * IComponent.cs: Fixed attributes, supports .Net 1.0 and 1.1
  120. * DescriptionAttribute.cs:
  121. * DesignerCategoryAttribute.cs:
  122. * DoubleConverter.cs:
  123. * EditorBrowsableAttribute.cs:
  124. * EventDescriptorCollection.cs:
  125. * PropertyChangedEventHandler.cs:
  126. * RefreshEventArgs.cs:
  127. * StringConverter.cs:
  128. * DefaultValueAttribute.cs: Reformatted following style guidelines
  129. * License.cs: Removed unused MonoTODOs
  130. * LicenseContext.cs: Implemented
  131. * LicenseException.cs: Implemented
  132. * LicenseProvider.cs: Removed unused MonoTODOs and unneccesary Finalizer
  133. * LicenseUsageMode.cs: Fixed enum
  134. * RefreshProperties.cs: Fixed enum
  135. * LicFileLicenseProvider.cs: Implementation added
  136. * ExtenderProvidedPropertyAttribute.cs: Implementation added, formatting corrections
  137. * ExpandableObjectConverter.cs: Implemented
  138. * ComponentConverter.cs: Implemented
  139. 2003-06-23 Andreas Nahr <[email protected]>
  140. * DesignerAttribute.cs: Fixed AttributeUsage, implementation errors,
  141. better Hashcode generation
  142. * EditorAttribute.cs: Fixed AttributeUsage, implementation errors,
  143. better Hashcode generation
  144. * LicenseContext.cs: Added and implemented missing property
  145. * ListBindableAttribute.cs: Simplified implementation, removed
  146. unneccessary data.
  147. * ReadOnlyAttribute.cs: Better Hashcode generation
  148. * RunInstallerAttribute.cs: Better Hashcode generation, more robust
  149. Equals check.
  150. * LicenseProviderAttribute.cs: Fixed AttributeUsage, indentation
  151. * ProvidePropertyAttribute.cs: Fixed AttributeUsage
  152. * ToolboxItemFilterAttribute.cs: Fixed AttributeUsage
  153. * MarshalByValueComponent.cs:
  154. * IContainer.cs:
  155. * IComponent.cs: Added missing attribute(s)
  156. 2003-06-24 Gonzalo Paniagua Javier <[email protected]>
  157. * AmbientValueAttribute.cs:
  158. * ArrayConverter.cs:
  159. * BaseNumberConverter.cs:
  160. * BindableAttribute.cs:
  161. * BooleanConverter.cs:
  162. * BrowsableAttribute.cs:
  163. * ByteConverter.cs:
  164. * CategoryAttribute.cs:
  165. * CharConverter.cs:
  166. * CollectionConverter.cs:
  167. * Component.cs:
  168. * ComponentCollection.cs:
  169. * ComponentEditor.cs:
  170. * Container.cs:
  171. * CultureInfoConverter.cs:
  172. * DateTimeConverter.cs:
  173. * DecimalConverter.cs:
  174. * DefaultEventAttribute.cs:
  175. * DefaultPropertyAttribute.cs:
  176. * DefaultValueAttribute.cs:
  177. * DescriptionAttribute.cs:
  178. * DesignOnlyAttribute.cs:
  179. * DesignTimeVisibleAttribute.cs:
  180. * DesignerCategoryAttribute.cs:
  181. * DesignerSerializationVisibilityAttribute.cs:
  182. * DoubleConverter.cs:
  183. * EditorBrowsableAttribute.cs:
  184. * EventDescriptor.cs:
  185. * EventDescriptorCollection.cs:
  186. * ExpandableObjectConverter.cs:
  187. * ExtenderProvidedPropertyAttribute.cs: New file.
  188. * GuidConverter.cs:
  189. * IComNativeDescriptorHandler.cs:
  190. * IComponent.cs:
  191. * ImmutableObjectAttribute.cs:
  192. * InheritanceAttribute.cs:
  193. * InheritanceLevel.cs:
  194. * InstallerTypeAttribute.cs:
  195. * Int16Converter.cs:
  196. * Int32Converter.cs:
  197. * Int64Converter.cs:
  198. * InvalidEnumArgumentException.cs:
  199. * LicenseProviderAttribute.cs:
  200. * LocalizableAttribute.cs:
  201. * MarshalByValueComponent.cs:
  202. * MemberDescriptor.cs:
  203. * MergablePropertyAttribute.cs:
  204. * NotifyParentPropertyAttribute.cs:
  205. * ParenthesizePropertyNameAttribute.cs:
  206. * PropertyDescriptor.cs:
  207. * PropertyDescriptorCollection.cs:
  208. * PropertyTabAttribute.cs:
  209. * ProvidePropertyAttribute.cs:
  210. * RecommendedAsConfigurableAttribute.cs:
  211. * RefreshPropertiesAttribute.cs:
  212. * SByteConverter.cs:
  213. * SingleConverter.cs:
  214. * TimeSpanConverter.cs:
  215. * ToolboxItemFilterAttribute.cs:
  216. * TypeConverter.cs:
  217. * TypeConverterAttribute.cs:
  218. * TypeDescriptor.cs:
  219. * TypeListConverter.cs:
  220. * UInt16Converter.cs:
  221. * UInt32Converter.cs:
  222. * UInt64Converter.cs: implementation and fixes by Andreas Nahr
  223. ([email protected]).
  224. 2003-06-23 Gonzalo Paniagua Javier <[email protected]>
  225. * IExtenderProvider.cs: mono-stylized.
  226. * IComNativeDescriptorHandler.cs:
  227. * SyntaxCheck.cs: new files from Andreas Nahr.
  228. 2003-03-20 Dick Porter <[email protected]>
  229. * Win32Exception.cs: Made the fallback error more useful by
  230. reporting the error number
  231. 2003-03-14 Gonzalo Paniagua Javier <[email protected]>
  232. * MarshalByValueComponent.cs: removed a monotodo.
  233. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  234. * Win32Exception.cs: added error code 2.
  235. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  236. * Win32Exception.cs: implemented GetObjectData ().
  237. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  238. * RunInstallerAttribute.cs: New file.
  239. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  240. * Win32Exception.cs: added 10065 (WSA_EHOSTUNREACH).
  241. 2003-02-05 Alan Tam <[email protected]>
  242. * DesignedCategoryAttribute.cs: Implemented DesignerCategoryAttribute
  243. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  244. * BrowsableAttribute.cs: this attribute applies to All. Since the fix
  245. to bug #37380, mcs complained about this when compiling System.Data.
  246. 2003-01-08 Dick Porter <[email protected]>
  247. * Win32Exception.cs (ComponentModel): Added EWOULDBLOCK
  248. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  249. * TypeDescriptor.cs: use ICustomTypeDescriptor if the component
  250. implements it. It's done for GetProperties and should be done for the
  251. rest of methods present in ICustomTypeDescriptor.
  252. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  253. * TypeDescriptor.cs: moved code from GetProperties (object) to (Type).
  254. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  255. * DefaultValueAttribute.cs: the attribute applies to All.
  256. 2002-11-19 Duncan Mak <[email protected]>
  257. * DesignerAttribute.cs:
  258. * EditorAttribute: Style changes. Gonzalo committed the build
  259. fixes before I did.
  260. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  261. * DesignerAttribute.cs:
  262. * EditorAttribute.cs: fixed the build.
  263. 2002-11-19 Alejandro Sánchez Acosta <[email protected]>
  264. * EditorAttribute: implemented.
  265. * DesignerAttribute: implemented.
  266. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  267. * Win32Exception.cs: added 10107 -> WASSYSCALLFAILURE.
  268. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  269. * ListBindableAttribute.cs: implemented.
  270. 2002-11-02 Duncan Mak <[email protected]>
  271. * InvalidEnumArgumentException.cs: Added.
  272. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  273. * EventHandlerList.cs: fixed bug #29535.
  274. 2002-10-03 Dick Porter <[email protected]>
  275. * Win32Exception.cs: Added ETIMEDOUT
  276. 2002-09-30 Dick Porter <[email protected]>
  277. * Win32Exception.cs: Sorted the errors, added EINPROGRESS
  278. 2002-09-17 Asier Llano Palacios <[email protected]>
  279. * CancelEventArgs.cs
  280. * WarningException.cs
  281. * CancelEventHandler.cs
  282. * PropertyChangedEventHandler.cs
  283. * IExtenderProvider.cs: Implemented
  284. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  285. * Component.cs:
  286. * ComponentCollection.cs:
  287. * Container.cs:
  288. * MarshalByValueComponent.cs: IDisposable fixes.
  289. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  290. * BindableSupport.cs:
  291. * Component.cs:
  292. * EventDescriptorCollection.cs:
  293. * ITypeDescriptorContext.cs:
  294. * TypeConverter.cs:
  295. * TypeDescriptor.cs: class status based fixes.
  296. * StringConverter.cs: implemented a couple of methods.
  297. 2002-07-29 Gonzalo Paniagua Javier <[email protected]>
  298. * EnumConverter.cs: new file.
  299. * TypeConverter.cs: implemented a few simple methods.
  300. * TypeDescriptor.cs:
  301. (GetConverter): initial support for converters of well-known types.
  302. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  303. * DerivedPropertyDescriptor.cs: New file. Internal class.
  304. * PropertyDescriptorCollection.cs: almost fully implemented.
  305. * TypeDescriptor.cs: implemented a couple of GetProperties ().
  306. Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <[email protected]>
  307. * Component.cs: don't die if Disposed is null.
  308. 2002-07-22 Tim Coleman <[email protected]>
  309. * RecommendedAsConfigurableAttribute.cs: new file added
  310. for System.Web.Services build
  311. 2002-07-22 Tim Coleman <[email protected]>
  312. * ExpandableObjectConverter.cs: Fix error with constructor
  313. 2002-07-22 Tim Coleman <[email protected]>
  314. * TypeConverter.cs: Fixed bad stubb function
  315. GetConvertToException ()
  316. 2002-07-22 Tim Coleman <[email protected]>
  317. * ComponentCollection.cs: Added reference to
  318. ReadOnlyCollectionBase to make sure
  319. that we inherit the appropriate methods.
  320. Not sure why the Dispose() method is
  321. required, but left for now.
  322. 2002-07-22 Tim Coleman <[email protected]>
  323. * TypeConverter.cs: Added new stubbs
  324. * BindableAttribute.cs: Added
  325. * BindableSupport.cs: Added
  326. * NotifyParentPropertyAttribute.cs: Added
  327. * ExpandableObjectConverter.cs: Added
  328. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  329. * MemberDescriptor.cs: implemented Attributes and Category.
  330. * PropertyDescriptor.cs: implemented Converter. Declared GetValue ().
  331. * PropertyDescriptorCollection.cs: fixed indexers declaration.
  332. * ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
  333. fixed value for Yes.
  334. * ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.
  335. * TypeConverter.cs: added SimplePropertyDescriptor class.
  336. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  337. * ToolboxItemAttribute.cs: New file.
  338. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  339. * DefaultEventAttribute.cs: new file.
  340. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  341. * AttributeCollection.cs: fixlet.
  342. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  343. * AttributeCollection.cs: finished implementation.
  344. * TypeDescriptor.cs: implemented GetAttributes (object).
  345. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  346. * AttributeCollection.cs: initialize member variables.
  347. * RefreshEventArgs.cs: implemented.
  348. * RefreshEventHandler.cs: New file.
  349. * TypeDescriptor.cs: fully stubbed out the remaining method.
  350. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  351. * DefaultPropertyAttribute.cs: New file.
  352. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  353. * TypeConverter.cs: flushed local changes.
  354. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  355. * StringConverter.cs: stubbed out.
  356. * TypeConverter.cs: stubbed the rest out and added some implementation.
  357. Five errors left when compiling System.Web in linux.
  358. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  359. * TypeConverterAttribute.cs: attribute used by
  360. TypeDescriptor.Getconverter ().
  361. * TypeDescriptor.cs: implemented GetConverter in the right way.
  362. 2002-06-15 Gonzalo Paniagua Javier <[email protected]>
  363. * TypeConverter.cs:
  364. * ITypeDescriptorContext.cs:
  365. * TypeDescriptor.cs: implemented minimal set of features needed by xsp,
  366. which uses ColorConverter.
  367. 2002-05-12 Daniel Morgan <[email protected]>
  368. * IComponent.cs
  369. * ISite.cs: added using System
  370. * MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
  371. to // TODOs and added using System. The throwing of the exceptions prevented
  372. System.Data from running.
  373. 2002-05-10 Rodrigo Moya <[email protected]>
  374. * EventDescriptorCollection.cs (this[index]): call eventList[index],
  375. not this[index], which issues an 'ambigous call' error on Linux.
  376. 2002-05-07 Rodrigo Moya <[email protected]>
  377. * EventDescriptor.cs: added missing constructors.
  378. * EventDescriptorCollection.cs: fixed interface methods implementation
  379. * IDataErrorInfo.cs:
  380. * IEditableObject.cs: new interfaces.
  381. 2002-05-05 Gonzalo Paniagua Javier <[email protected]>
  382. * System.ComponentModel/AttributeCollection.cs: added a cast to make
  383. it compile.
  384. 2002-05-03 Rodrigo Moya <[email protected]>
  385. * AttributeCollection.cs:
  386. * EventDescriptor.cs:
  387. * EventDescriptorCollection.cs:
  388. * ICustomTypeDescriptor.cs: new files.
  389. 2002-05-01 Duncan Mak <[email protected]>
  390. * ListChangedType.cs:
  391. * ListChangedEventHandler.cs:
  392. * ListChangedEventArgs.cs: Added to fix build.
  393. 2002-05-01 Miguel de Icaza <[email protected]>
  394. * PropertyDescriptorCollection.cs: Added the IList explicit
  395. implementation methods.
  396. lots of bug fixes to get the build to compile again.
  397. 2002-05-01 Duncan Mak <[email protected]>
  398. * ListSortDirection.cs: EnumChecked.
  399. 2002-05-01 Rodrigo Moya <[email protected]>
  400. * ListSortDirection.cs: new enumeration. Please, somebody run
  401. EnumCheck on it, as I don't have a windows machine.
  402. * PropertyDescriptorCollection.cs: new class.
  403. * ITypedList.cs:
  404. * IBindingList.cs: new interfaces.
  405. 2002-04-28 Duncan Mak <[email protected]>
  406. * CollectionChangeAction.cs: Changed enum layout to fit the MS
  407. implementation. Please use EnumCheck!
  408. 2002-04-28 Rodrigo Moya <[email protected]>
  409. * CollectionChangeAction.cs: new enumeration.
  410. * CategoryAttribute.cs: moved the 'return' keyword to the
  411. end of the method, to avoid compilation errors on Linux for
  412. all CategoryAttribute properties.
  413. 2002-04-28 Rodrigo Moya <[email protected]>
  414. * IListSource.cs:
  415. * ISupportInitialize.cs:
  416. * MarshalByValueComponent.cs: new stubs, needed for System.Data
  417. compilation.
  418. * PropertyChangedEventArgs.cs:
  419. * CollectionChangeEventHandler.cs:
  420. * CollectionChangeEventArgs.cs: implemented.
  421. 2002-04-28 Lawrence Pit <[email protected]>
  422. * Added error code 11001 to Win32Exception, used by Dns.c
  423. 2002-04-04 Dick Porter <[email protected]>
  424. * ISynchronizeInvoke.cs: Needed by Process
  425. 2002-01-23 Dick Porter <[email protected]>
  426. * Win32Exception.cs: implement, with support for looking up
  427. runtime errors.
  428. 2002-01-17 Miguel de Icaza <[email protected]>
  429. * Win32Exception.cs: Add.
  430. 2002-01-05 Ravi Pratap <[email protected]>
  431. * CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.
  432. * Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.
  433. 2001-10-27 Miguel de Icaza <[email protected]>
  434. * DesignerSerializationVisibilityAttribute.cs: Implemented.
  435. * DesignerSerializationVisibility.cs: New enumeration.
  436. * LocalizableAttribute.cs: Implemented.
  437. * BrowsableAttribute.cs: Implemented.
  438. * DesignOnlyAttribute.cs: Implemented.
  439. * DescriptionAttribute.cs: Implement.
  440. * MemberDescriptor.cs: Implemented.
  441. * CategoryAttribute.cs: implemented.
  442. 2001-08-21 Nick Drochak <[email protected]>
  443. * Component.cs: Eliminated compile errors by removing redundant fields and
  444. using the ISite member instead. Also raised the Disposed event, but not
  445. sure if it's correct now. Look for FIXME in the comments.
  446. 2001-08-02 Miguel de Icaza <[email protected]>
  447. * EventHandlerList.cs: New file.
  448. * Container.cs, Component.cs, IContainer.cs, IComponent.cs,
  449. ComponentCollection.cs, ISite.cs: New classes