Re: Updated Norwegian translation.

2010-10-14 Thread Austin English
2010/10/14 Trygve Vea : > Hello, > > This is my first patch to Wine - this one fixes some translation > errors - and adds some new translations. > I hope this is not the last patch I will send to Wine. > > Any feedback is welcome. Hello Trygve, Thanks for the translations. However, patches should

Re: ws2_32: Add support and tests for WSARecvMsg and IP_PKTINFO.

2010-10-14 Thread Erich Hoover
If you guys would mind looking over this revised patchset I would greatly appreciate it, I believe I've appropriately included your corrections. Please note that mswsock.h and ws2ipdef.h will be submitted as separate patches. Thanks in advance! Erich Hoover ehoo...@mines.edu diff --git a/dlls/ws

Re: Accessibility in wine

2010-10-14 Thread Seth Shelnutt
Reece, I have to agree with you on the idea of just using UIAutomation and then using the MSAA bridge/proxy for MSAA support in the end. This leaves only one implementation in wine, requires only one to be implemented. It's likely that eventually MSAA will be phased out. Although since MSAA is alr

Re: msi/tests: Move test coverage for standard actions to a separate module.

2010-10-14 Thread Greg Geldorp
> From: Hans Leidekker > > This is to get rid of the remaining timeouts on testbot. We now have > a clean test run: > > http://testbot.winehq.org/JobDetails.pl?Key=6167 > > On platforms where we need to create a restore point the install tests > still take over two minutes, so depending on the loa

Re: msi/tests: Move test coverage for standard actions to a separate module.

2010-10-14 Thread Hans Leidekker
On Thu, 2010-10-14 at 13:55 +0200, Paul Vriens wrote: > On 10/14/2010 01:12 PM, Hans Leidekker wrote: > > This is to get rid of the remaining timeouts on testbot. We now have > > a clean test run: > > > > http://testbot.winehq.org/JobDetails.pl?Key=6167 > > > > On platforms where we need to create

Re: msi/tests: Move test coverage for standard actions to a separate module.

2010-10-14 Thread Paul Vriens
On 10/14/2010 01:12 PM, Hans Leidekker wrote: This is to get rid of the remaining timeouts on testbot. We now have a clean test run: http://testbot.winehq.org/JobDetails.pl?Key=6167 On platforms where we need to create a restore point the install tests still take over two minutes, so depending

RE: [PATCH 4/5] d3d10core: Add a stub ID3D10Texture3D implementation.

2010-10-14 Thread Greg Geldorp
> From: Henri Verbeet > > Looks like the bot is using "patch" instead of "git apply" to apply > patches, and missed the rename in patch 3/5. Yes, you're right. I'll look into it. Greg.

Re: [PATCH 4/5] d3d10core: Add a stub ID3D10Texture3D implementation.

2010-10-14 Thread Henri Verbeet
On 14 October 2010 13:05, Marvin wrote: > While running your changed tests on Windows, I think I found new failures. > Being a bot and all I'm not very good at pattern recognition, so I might be > wrong, but could you please double-check? > Full results can be found at > http://testbot.winehq.org/

Re: msi/tests: Move test coverage for standard actions to a separate module.

2010-10-14 Thread Hans Leidekker
This is to get rid of the remaining timeouts on testbot. We now have a clean test run: http://testbot.winehq.org/JobDetails.pl?Key=6167 On platforms where we need to create a restore point the install tests still take over two minutes, so depending on the load on testbot we might still see some t

Re: [PATCH 4/5] d3d10core: Add a stub ID3D10Texture3D implementation.

2010-10-14 Thread testbot
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=6168 Your paranoid android.

Re: Google Summer of Code Mentors?

2010-10-14 Thread Stefan Dösinger
Am 14.10.2010 um 07:48 schrieb Kai Blin: > The mentor summit is a great opportunity to meet developers from a wide > range of open source projects, it's probably one of the best > cross-sections of open source know-how you can find in a weekend. I can > only recommend going. I can second that. Int

Re: ws2_32: Add support and tests for WSARecvMsg and IP_PKTINFO.

2010-10-14 Thread Rolf Kalbermatter
On Tue, Oct 13, 2010 at 16:30 PM, Erich Hoover wrote: >> ... >> +int newsize = (int)*maxsize; >> + >> +/* Make sure there is at least enough room for this entry */ >> +newsize -= sizeof(WSACMSGHDR) + CMSG_ALIGN(len); >> +if (newsize < 0) >> +return 0; >> +*maxsize = (UL