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
AgeCommit message (Collapse)Author
2012-10-11[Not Resources Related] Fixed buggy tests breaking the test build.garyb
2012-10-11Tidy after feedbackgaryb
2012-10-11Mark test NotWorkinggaryb
2012-10-11System.Resources: Tidy file headersgaryb
2012-10-11Support for ResXResourceWriter.BasePath being deeper than actual filepathgaryb
2012-10-11Implement Basepath on ResXResourceWritergaryb
2012-10-11Refactored, cleaned upgaryb
2012-10-11Remove reliance on 2.0 profile test assemblygaryb
2012-10-11Fixed comment writing. Ref to serialized obj no longer kept. Refactoring.garyb
2012-10-11More tests, more tidying, all present currently passgaryb
2012-10-11Fixes RE failing testsgaryb
2012-10-11ResXDataNode based resx handling nearly complete. More tests added.garyb
2012-10-11ResXDataNode test refactoring, few more member tests.garyb
2012-10-11Added File Headersgaryb
2012-10-11Draft Tests and Implementation of ResXDataNode Based ResX Handlinggaryb
2012-08-15Fix code indentation and formattingThomas Goldstein
2012-08-03https://bugzilla.xamarin.com/show_bug.cgi?id=3125sesef
2012-07-29Fix TestDispose test to work with NUnit < 2.5Thomas Goldstein
2012-07-28Add unit test for Novell bug 660986Thomas Goldstein
2012-07-28Dispose of form to avoid TearDown warningThomas Goldstein
2012-07-28Match .NET behavior with AutoSize Columns/Rows when no control starts in ↵Steven Boswell II
column 1
2012-07-26Properly update the combo box selected text when the current item is ↵Steven Boswell II
changed, and a part of the text is selected
2012-07-24Properly fill in the whole TableLayoutPanel with dummy controlsSteven Boswell II
2012-07-21Merge pull request #335 from robwilkens/DataGridBugs1Miguel de Icaza
This fixes several bugs in Winforms DataGrid
2012-07-21Merge pull request #337 from robwilkens/IdleThreadsFixesMiguel de Icaza
Fix:Idle event handler was called on every thread rather than thread ass...
2012-06-24Implement control padding. Fixes Xamarin bug 2562.eb1@sil.org
2012-06-21Fix bug in ComboBox Text setter, that made it so the Text value was not ↵Steven Boswell II
always set
2012-06-21Adjust DataGridView.RowHeight in VirtualMode. Fixes Xamarin bug 2392.eb1@sil.org
2012-06-20Fix:Idle event handler was called on every thread rather than thread assigned onRob Wilkens
Summary of changes in order git diff --staged is giving them to me: (1) Each Xplat driver : -local "Idle" variable remove, replaced with a Driver-level Idle_Threads which is assigned by what is now the Idle Property. -When Idle Called from with thread it used to do: if (Idle != null) Idle (this, e) now we have to do some additional checks and change the call similar to as follows to get the per-thread idle event handler: (pseudo-pseudo-code) id=ManagedThreadId; if (Idle_Threads is not null and it contains a key for the id and the key indexes into a non-null event handler) then Idle_Threads [id] (this, e); (2) Xplat Driver Here's where the property is added and assigns the Idle event handler to Idle_Threads. A Lock was needed the first time we create the Idle_Threads dictionary. The Idle_Threads dictionary indexes by managed thread id and maps onto an event handler for each one. (3) Win32 Specific change In my testing, I noticed that Win32 did not call Idle as part of its normal Run loop processing. So, when it would call GetMessage and it was Blocking we now check Idle if we were going to block. We don't actually call idle if we first peekMessage and find a message, in those cases we just treat it as if GetMessage Got the message. If we are blocking and peek returns no messages, we call idle. If we have already called idle once on this pass through the GetMessage Loop we set CheckIdle to false and go back to the to to PRocessNextMEssage but this time we block rather than peek and call idle. This code was tested on Win32, MacOS/Carbon and Linux/X11. There have been some minor formatting changes (Code style) since the testing, which should not affect test results.
2012-06-20This is a unit test for Bug5487, Bug 5510, and maybe Bug 5511Rob Wilkens
Based loosely on the code here: https://bugzilla.novell.com/show_bug.cgi?id=MONO79788 which was the sample code used to recreate the problems in the first place.
2012-06-18Fix OneClickComboBoxCell test on WindowsSteven Boswell II
2012-06-18Reformatting to match Mono coding style guidelinesThomas Goldstein
2012-06-18Make it so the last-edited cell change is committed rather than not lost, ↵Steven Boswell II
when the user leaves the DataGridView. Fixes Xamarin bug 5420.
2012-06-15Fix TestMenuItemsDispose testMarek Safar
2012-06-13Unit test for bug 3418Thomas Goldstein
2012-06-11Make it so getting a DataGridViewComboBoxCell to drop down doesn't require ↵Steven Boswell II
extra clicks
2012-06-10Implement the DataGridView.EditingControlShowing event. Fixes Xamarin bug 5419.Steven Boswell II
2012-06-10Fix DataGridView.SelectionChanged event firing differences with .NETSteven Boswell II
2012-06-09Decrement ComboBox SelectedIndex when an item before the selected index gets ↵Steven Boswell II
removed. Fixes Xamarin bug 5595.
2012-06-09Do not throw an exception when trying to remove a ComboBox item that doesn't ↵Steven Boswell II
exist, to match .NET
2012-06-05Fire the DataGridView.SelectionChanged event when the selected rows/columns ↵Steven Boswell II
changes. Fixes Xamarin bug 3415.
2012-06-03[class libraries] drop ONLY_1_1Miguel de Icaza
2012-06-02[net_1_0] Finally all of NET_1_0 is gone from the source filesMiguel de Icaza
2012-05-29This is a clean up of last commit. One line had spaces where there shouldRobert Wilkens
have been tabs.
2012-05-29This updates the tests with suggestions made byRobert Wilkens
ermshiperete (Eberhard Beilharz). Re-ran these tests and confirmed they are o.k.
2012-05-29Replaces some tabs with spaces - earlier copy and paste messed this up, thisRobert Wilkens
shouldn't affect any code, just its formatting.
2012-05-29This addresses bug 2234 - important please verifyRobert Wilkens
https://bugzilla.xamarin.com/show_bug.cgi?id=2234 It includes unit tests. The point of this is essentially to replicate a behavior of the Microsoft .NET Platform where exceptions are eaten in the ComboBox under certain conditions (In the SelectedIndexChanged handler).
2012-05-25Merge pull request #298 from ermshiperete/4921Miguel de Icaza
Xamarin-4921: Fix Listbox.SelectedItem after adding sorted item
2012-05-21Xamarin-4921: Fix Listbox.SelectedItem after adding sorted itemEberhard Beilharz
When we add an item to a sorted listbox the indices of the selected items change and need to be updated. Change-Id: Ia32849fe10480354835dcd48b37d326d612af04f
2012-05-21Unit test for bug Xamarin-4959Eberhard Beilharz
Because the clipboard is a shared resource between applications it is possible that the test sometimes fails for wrong reasons if another app manipulates the clipboard just at the right time. Change-Id: I1a52b62d2958ece35c8927172d94ab6ccb3183b0