Re: user32: Restore old WM_SIZE handler in mdi child

2007-01-21 Thread Dmitry Timoshkov
"Peter Oberndorfer" <[EMAIL PROTECTED]> wrote: this patch seems to cause http://bugs.winehq.org/show_bug.cgi?id=7190 Each time a MDI child window gets a WM_SIZE the left most menu entry disapperars. The problem is that MDI_RestoreFrameMenu is called for each WM_SIZE message, that does not maxim

Re: comctl32/tests/updown failures on xp?

2007-01-21 Thread Lei Zhang
On 1/19/07, Dan Kegel <[EMAIL PROTECTED]> wrote: On 1/19/07, James Hawkins <[EMAIL PROTECTED]> wrote: > It sounds like your build environment isn't set up correctly. The > easiest way to work on and compile the tests is to run > wine/tools/winapi/msvcmaker under cygwin in Windows. This will cre

Re: user32: Restore old WM_SIZE handler in mdi child

2007-01-21 Thread Peter Oberndorfer
On Monday 08 January 2007 11:31, Dmitry Timoshkov wrote: > Hello, Hi, this patch seems to cause http://bugs.winehq.org/show_bug.cgi?id=7190 Each time a MDI child window gets a WM_SIZE the left most menu entry disapperars. The problem is that MDI_RestoreFrameMenu is called for each WM_SIZE message,

Re: WINSPOOL_EnumPrinters Found 0 printers on system with 1 parallel CUPS printer

2007-01-21 Thread Detlef Riekenberg
On Sa, 2007-01-20 at 23:15 -0500, Michael [Plouj] Ploujnikov wrote: > $ WINEDEBUG=+winspool wine notepad > trace:winspool:WINSPOOL_EnumPrinters Found 0 printers wine loads libcups.so to get the list of installed printers, but the command "lpr" is still needed to do the printing. You must see this

Re: dbghelp: fix debuglink crash, accessing memory after munmap

2007-01-21 Thread Peter Oberndorfer
On Sunday 21 January 2007 16:25, Eric Pouech wrote: > Peter Oberndorfer a écrit : > > Winedbg would crash on my system when trying to set a breakpoint (loading > > the debug info from a .debug file) > > The problem is that hash_table_elt adds the symbols of the .debug file to > > the hashtable of

Re: [AppDB] Langauge fixes for the FAQ

2007-01-21 Thread Duane Clark
Kai Blin wrote: ... I think most native speakers just get the plural s and the 's genitive mixed up. Like their, there and they're. Of course, I'd have to ask a native speaker to confirm that. Or, while not an authoritative source, check out: http://en.wikipedia.org/wiki/English_plural As

Re: [AppDB] Langauge fixes for the FAQ

2007-01-21 Thread Kai Blin
On Sunday 21 January 2007 17:48, Alexander Nicolaysen Sørnes wrote: > Søndag 21 januar 2007 16:16, skrev Francois Gouget: > > On Sat, 20 Jan 2007, Alexander Nicolaysen Sørnes wrote: > > > Langauge fixes for the FAQ. > > > > -Q: How can I submit How-to's? > > +Q: How can I submit how-to's? > > > > I

Re: [AppDB] Langauge fixes for the FAQ

2007-01-21 Thread Alexander Nicolaysen Sørnes
Søndag 21 januar 2007 16:16, skrev Francois Gouget: > On Sat, 20 Jan 2007, Alexander Nicolaysen Sørnes wrote: > > Langauge fixes for the FAQ. > > -Q: How can I submit How-to's? > +Q: How can I submit how-to's? > > I tend to prefer 'howto' or 'how to' rather than 'how-to'. > Also, plurals normally d

Re: dbghelp: fix debuglink crash, accessing memory after munmap

2007-01-21 Thread Eric Pouech
Peter Oberndorfer a écrit : Winedbg would crash on my system when trying to set a breakpoint (loading the debug info from a .debug file) The problem is that hash_table_elt adds the symbols of the .debug file to the hashtable of the parent file. But at the time elf_new_public_symbols is run, the

Re: [AppDB] Langauge fixes for the FAQ

2007-01-21 Thread Francois Gouget
On Sat, 20 Jan 2007, Alexander Nicolaysen Sørnes wrote: > Langauge fixes for the FAQ. -Q: How can I submit How-to's? +Q: How can I submit how-to's? I tend to prefer 'howto' or 'how to' rather than 'how-to'. Also, plurals normally don't have a single quote. So I'd write 'howtos'. Alternately th

Re: 3DMark2000 regression

2007-01-21 Thread Dmitry Timoshkov
"Stefan Dösinger" <[EMAIL PROTECTED]> wrote: > If you need to make a window visible call ShowWindow, not remove WS_VISIBLE > and later call SetWindowPos(SWP_SHOWWINDOW). So showing the window is fine, what was wrong before was removing all the flags and then showing the window again. Yes, that

Re: 3DMark2000 regression

2007-01-21 Thread Stefan Dösinger
Am Sonntag 21 Januar 2007 05:58 schrieb Dmitry Timoshkov: > If you need to make a window visible call ShowWindow, not remove WS_VISIBLE > and later call SetWindowPos(SWP_SHOWWINDOW). So showing the window is fine, what was wrong before was removing all the flags and then showing the window again.