Re: Vijay Kiran Kamuju : comctl32: MonthCalendar - Fixhighlightingof current date.

2006-12-27 Thread Dmitry Timoshkov
"Vijay Kiran Kamuju" <[EMAIL PROTECTED]> wrote: What do we need to setup, if we want a test framework for messages in comctl32 similar to user32? Some kind of a message queue is needed and a mechanism to check what has been gathered with an expected sequence. I'd suggest to not invent a wheel

Re: Vijay Kiran Kamuju : comctl32: MonthCalendar - Fix highlightingof current date.

2006-12-27 Thread Vijay Kiran Kamuju
Hi, It might be because of the MULTISELECT style not being set. Can you please test with the MULTISELECT set? In the older version of the control spy test its set by default, and in the new version its not set. Can you please test that and also test by applying the other patch as well? Currently

Re: WGL: fix wglGetProcAddress bug

2006-12-27 Thread Roderick Colenbrander
Vitaly just pointed out that the previous version added some extra spaces. This one fixes that. Roderick > Hi, > > This patch fixes a nasty wglGetProcAddress bug. In case the name of an > unknown GL extension (one which is not in wine yet) was passed to > wglGetProcAddress it was assumed that i

Re: kernel32 console bug?

2006-12-27 Thread Frank Richter
On 21.12.2006 21:28, Eric Pouech wrote: > perhaps ShellExecute is supposed to create a console when calling > CreateProcess for CUI subprocesses (this should be tested) Or CreateProcess() itself creates the console window. -f.r.

Re: Bug 50

2006-12-27 Thread Keith Dunwoody
Hi Pedro, Suppose the user asks for (on average) 5.5 pixels per space. At the moment wine is using 5 pixels per space, and then tacking on all the remaining .5 pixels at the end of the line. The correct answer would be to use 5 pixels in half the spaces, and 6 in the other half. This is essenti

Re: Bug 50

2006-12-27 Thread Pedro Araújo Chaves Jr.
Followup: you can download Lotus trial versions here: http://www.ibm.com/developerworks/lotus/downloads/ Hope this helps. Regards, Pedro.

Re: adding a data point to ALSA vs Wine sound discussion

2006-12-27 Thread Andreas Mohr
Hi, On Tue, Dec 26, 2006 at 03:41:56AM +0100, Molle Bestefich wrote: > Adding a data point to the ALSA and Wine sound discussion. That data point unfortunately doesn't contain the ALSA version number, thus it's almost useless ;) Andreas Mohr

Re: Bug 50

2006-12-27 Thread Pedro Araújo Chaves Jr.
I've been trying to get the lpDx array to be properly calculated, but unfortunately to no avail. I did find, though, that GetTextExtentExPointW is never called with a maxExt value other than zero, and thus nfit is not calculated. Regarding that, would any of you know where I should look for the p

Re: make test failure

2006-12-27 Thread Dmitry Timoshkov
"Kai Blin" <[EMAIL PROTECTED]> wrote: Well, both emulate virtual desktop and managed windows are both ticked. It's impossible to have managed windows in a virtual Wine desktop. I switched off the desktop emulation and reran the tests, giving me the following errors: msg.c:8624: Test failed

Re: make test failure

2006-12-27 Thread Kai Blin
On Wednesday 27 December 2006 05:00, Dmitry Timoshkov wrote: > "Kai Blin" <[EMAIL PROTECTED]> wrote: > > over christmas, I decided to give make test another try. > > > > I'm running this on an openSUSE 10.1 box, ati radeon mobility x300 with > > open source drivers. (Probably unimportant for the er

Re: ole32: Marshal the ORPCTHAT structure prefixed to the server data.

2006-12-27 Thread Robert Shearman
Dmitry Timoshkov wrote: "Robert Shearman" <[EMAIL PROTECTED]> wrote: +*hook_count = 0; +*extension_count = 0; + +EnterCriticalSection(&csChannelHook); + +LIST_FOR_EACH_ENTRY(entry, &channel_hooks, struct channel_hook_entry, entry) +(*hook_count)++; + +if (hook_coun

Re: ole32: Marshal the ORPCTHAT structure prefixed to the server data.

2006-12-27 Thread Dmitry Timoshkov
"Robert Shearman" <[EMAIL PROTECTED]> wrote: +*hook_count = 0; +*extension_count = 0; + +EnterCriticalSection(&csChannelHook); + +LIST_FOR_EACH_ENTRY(entry, &channel_hooks, struct channel_hook_entry, entry) +(*hook_count)++; + +if (hook_count) +*data = HeapAl

Re: oleaut32: Fix failing VarMod tests in WinXP, fix VarMod(VT_DECIMAL) in Wine

2006-12-27 Thread Alexandre Julliard
Alex Villací­s Lasso <[EMAIL PROTECTED]> writes: > BTW, in case nobody knows, the BOOL->BSTR conversion is localized in > WinXP (so that in Spanish locales, conversion to strings gives > "Verdadero", not "True" as tested). Apparently it is *not* localized > in Win98SE. I don't have any other Windo

Re: Vijay Kiran Kamuju : comctl32: MonthCalendar - Fix highlightingof current date.

2006-12-27 Thread Dmitry Timoshkov
"Lei Zhang" <[EMAIL PROTECTED]> wrote: I see the problem Duane reports as well. As long as you stay with in the current month, the current day will remain highlighted even if you click another date. It will disappear if you (a) highlight the current date, then another date, or (b) if you go to a

Re: Vijay Kiran Kamuju : comctl32: MonthCalendar - Fix highlighting of current date.

2006-12-27 Thread Lei Zhang
I see the problem Duane reports as well. As long as you stay with in the current month, the current day will remain highlighted even if you click another date. It will disappear if you (a) highlight the current date, then another date, or (b) if you go to another month. On 12/26/06, Vijay Kiran K