Re: [PATCH 3/3] d3d9/tests: More D3DTSS_TEXTURETRANSFORMFLAGS projection tests.

2012-01-18 Thread Matteo Bruni
2012/1/14 Saulius Krasuckas : > * On Tue, 27 Dec 2011, Matteo Bruni wrote: >> --- >>  dlls/d3d9/tests/visual.c |  388 >> -- >>  1 files changed, 269 insertions(+), 119 deletions(-) > > Hello Matteo, > > this is > http://source.winehq.org/git/wine.git/com

Re: richedit: v1.0 richedit uses CR and LF for enter

2012-01-18 Thread Juan Lang
> Whats the difference between a typecast and &var[0]? I wasn't advocating for a typecast, merely admitting that we use them from time to time. What's the compile warning you're actually seeing on gcc? I don't think we care what warnings are produced in MSVC. --Juan

Re: richedit: v1.0 richedit uses CR and LF for enter

2012-01-18 Thread The Edmeades
> > > This was deliberate - I did that originally and I got a compile warning > as > > one is const WCHAR * and one is const WCHAR[2] (Not sure if that error > was > > from a MSVC windows or Linux compile, but I was trying to avoid it, and a > > typecast was a bit pointless as the above is accurate

Re: richedit: v1.0 richedit uses CR and LF for enter

2012-01-18 Thread Juan Lang
> This was deliberate - I did that originally and I got a compile warning as > one is const WCHAR * and one is const WCHAR[2] (Not sure if that error was > from a MSVC windows or Linux compile, but I was trying to avoid it, and a > typecast was a bit pointless as the above is accurate as well, isnt

Re: richedit: v1.0 richedit uses CR and LF for enter

2012-01-18 Thread The Edmeades
2012/1/18 Juan Lang > Hi Jason, > > + ME_InsertTextFromCursor(editor, 0, &endlv10[0], 2, style); > > you want to use endlv10 instead, i.e.: > > + ME_InsertTextFromCursor(editor, 0, endlv10, 2, style); > --Juan > This was deliberate - I did that originally and I got a co

Re: [SOLVED] Debugging Wine with Lightroom 3.5

2012-01-18 Thread Joris Huizer
On 01/18/2012 10:10 PM, Roland Baudin wrote: You can find the attached complete patch against wine 1.3.35. Hello Roland, Please send patches to wine-patches. Unless you are asking for feedback? HTH, Joris

Re: [SOLVED] Debugging Wine with Lightroom 3.5

2012-01-18 Thread Roland Baudin
Hi, I finally solved the menubar issue (menubar not shown in Lightroom 3.x when Windows version is set to Windows XP or below). I used a mix of the following patches : - http://source.winehq.org/patches/data/67089 from Andrew Eikum (GetMenuBarInfo() partial implementation) - http://www.win

Re: "Sound" keyword on bugzilla

2012-01-18 Thread Andrew Eikum
On Wed, Jan 18, 2012 at 07:03:24PM +, Jerome Leclanche wrote: > Any comments? > Seems like a useful idea to me, though I'd defer to the heavier Bugzilla users' opinions. Andrew > On Tue, Jan 17, 2012 at 1:09 AM, Jerome Leclanche wrote: > > > Hi, > > > > Joerg and I exchanged a couple of e

Re: "Sound" keyword on bugzilla

2012-01-18 Thread Jerome Leclanche
Any comments? J. Leclanche On Tue, Jan 17, 2012 at 1:09 AM, Jerome Leclanche wrote: > Hi, > > Joerg and I exchanged a couple of emails where I proposed a "sound" > keyword on bugzilla. Reasoning: there are multiple sound components, and > most of the time, the correct component is unknown (or

Re: richedit: v1.0 richedit uses CR and LF for enter

2012-01-18 Thread Juan Lang
Hi Jason, + ME_InsertTextFromCursor(editor, 0, &endlv10[0], 2, style); you want to use endlv10 instead, i.e.: + ME_InsertTextFromCursor(editor, 0, endlv10, 2, style); --Juan

Re: winex11.drv: Strip the _XXX from X11DRV_GetKeyNameText when approperate

2012-01-18 Thread Aric Stewart
On 1/17/12 10:18 PM, Vitaliy Margolen wrote: On 01/17/2012 09:32 AM, Aric Stewart wrote: The problem is that there is no XK keycode for just Shift, Control or Menu so X11DRV_MapVirtualKeyEx maps them to Shift_L, etc. As a result the string XKeysymToString returns is a string with a _L or _R at

Re: comdlg32: Remove the font sample characters string.

2012-01-18 Thread Frédéric Delanoy
2012/1/18 Michael Stefaniuc : > And what Francois is saying is that that isn't possible as the string > depends on the font and not on the UI language. So if I select a Klingon > font that has no latin characters I won't be able to see the "AaBbYyZz". > > bye >        michael OK. Got it. Must have

Re: comdlg32: Remove the font sample characters string.

2012-01-18 Thread Michael Stefaniuc
Frédéric Delanoy wrote: > 2012/1/18 Francois Gouget : >> On Wed, 18 Jan 2012, Frédéric Delanoy wrote: >> >>> On Wed, Jan 18, 2012 at 10:12, Francois Gouget wrote: The sample text does not depend on the dialog language but on the scripts supported by the font. As such translating it in t

Re: comdlg32: Remove the font sample characters string.

2012-01-18 Thread Frédéric Delanoy
2012/1/18 Francois Gouget : > On Wed, 18 Jan 2012, Frédéric Delanoy wrote: > >> On Wed, Jan 18, 2012 at 10:12, Francois Gouget wrote: >> > The sample text does not depend on the dialog language but on the scripts >> > supported by the font. As such translating it in the resource file makes >> >

Re: comdlg32: Remove the font sample characters string.

2012-01-18 Thread Francois Gouget
On Wed, 18 Jan 2012, Frédéric Delanoy wrote: > On Wed, Jan 18, 2012 at 10:12, Francois Gouget wrote: > > The sample text does not depend on the dialog language but on the scripts > > supported by the font. As such translating it in the resource file makes no > > sense. > > -    CTEXT          

Re: comdlg32: Remove the font sample characters string.

2012-01-18 Thread Frédéric Delanoy
On Wed, Jan 18, 2012 at 10:12, Francois Gouget wrote: > The sample text does not depend on the dialog language but on the scripts > supported by the font. As such translating it in the resource file makes no > sense. > -    CTEXT           "AaBbYyZz",stc5,103,80,109,24,SS_NOPREFIX | NOT > WS_VI

Re: Rethinking WineConf

2012-01-18 Thread Maarten Lankhorst
Hey, Op 17-01-12 22:01, Dan Kegel schreef: On Tue, Jan 17, 2012 at 12:43 PM, Jeremy White wrote: So, exploring #3 a bit further - what if we asked for our own track within FOSDEM 2013? (I presume that would be February 2013 in Brussels) It would let us all get together, allow us to have a f

Re: po: French translation updates.

2012-01-18 Thread Francois Gouget
On Wed, 18 Jan 2012, Frédéric Delanoy wrote: > On Tue, Jan 17, 2012 at 23:11, Francois Gouget wrote: > > @@ -9335,7 +9335,7 @@ msgstr "" > > "[nomFichier]\n" > > " [/S [/D]]\n" > > "\n" > >-"où\n" > >+"Où :\n" > > "\n" > > " + Définit un attribut.\n" > > " - Supprime un attribut.\n" >