Re: OleFont: Fix IDispatch Implementation (was Re: olefont: GetIDsOfNames)

2005-09-16 Thread Robert Shearman
Walt Ogburn wrote: I'm not sure how to proceed here. My small patch makes the GetIDsOfNames in olefont work, so that programs that want to use GetIDsOfNames to get a DISPID code and then use Invoke to set font size, bold, etc. will work. With your bigger patch, IFontDisp uses the GetIDsOfNames

Re: [RESEND] Fwd: wineprefix create theming directories

2005-09-16 Thread Alexandre Julliard
Vijay Kiran Kamuju <[EMAIL PROTECTED]> writes: > Is there any thing wrong with this patch.? That should probably be done in the shell32 registration or somewhere similar, so that we don't have to hardcode the names. -- Alexandre Julliard [EMAIL PROTECTED]

Re: listview crash fix

2005-09-16 Thread Michael Jung
Hi Dimi, On Friday 16 September 2005 14:41, Dimi Paun wrote: > Try this instead, I forgot you're not supposed to return > directly out of a __TRY block. Seems to work fine for me (I had to add an ntdll import to the Makefile to get it to link). No crashes thus far. Bye, -- Michael Jung [EMAIL

Re: Copy the generated fonts to windows/fonts

2005-09-16 Thread Alexandre Julliard
"Dmitry Timoshkov" <[EMAIL PROTECTED]> writes: > Do you mean that GDI should try to load fonts from the build tree > if it can't find them in windows/fonts? If yes, then why do we > create symlinks to programs and copy wine.inf to windows/inf? GDI should load the fonts from the font path; if user

Re: Copy the generated fonts to windows/fonts

2005-09-16 Thread Dmitry Timoshkov
"Alexandre Julliard" <[EMAIL PROTECTED]> wrote: > We really shouldn't need to do that, the fonts should be loaded from > the standard install dir. If that doesn't work for some reason it > needs to be fixed. Do you mean that GDI should try to load fonts from the build tree if it can't find them i

Re: Copy the generated fonts to windows/fonts

2005-09-16 Thread Dmitry Timoshkov
"Vitaly Lipatov" <[EMAIL PROTECTED]> wrote: > Dmitry, why we need to copy these fonts? Can we use symlinks for it? Sure, we can. I'll wait for Alexandre's comments before I'll change anything in the patch. -- Dmitry.

Re: Copy the generated fonts to windows/fonts

2005-09-16 Thread Alexandre Julliard
Dmitry Timoshkov <[EMAIL PROTECTED]> writes: > Dmitry Timoshkov <[EMAIL PROTECTED]> > Copy the generated fonts to windows/fonts. We really shouldn't need to do that, the fonts should be loaded from the standard install dir. If that doesn't work for some reason it needs to be fixed. -- A

Re: listview crash fix

2005-09-16 Thread Alexandre Julliard
Dimi Paun <[EMAIL PROTECTED]> writes: > OK, here it is, using exceptions instead of cluttering the > code with tests all over the place. Obviously, it is much > cleaner then other methods, but we've I know we've been > hesitant to use exceptions in Wine unless absolutely > necessary due to the c

Re: listview crash fix

2005-09-16 Thread Dimi Paun
On Fri, 2005-09-16 at 08:12 -0400, Dimi Paun wrote: > On Wed, 2005-09-14 at 15:16 +0200, Michael Jung wrote: > > > To be honest, I don't like this solution at all, I'll try > > > a different approach tonight, but in the meanwhile... > > OK, here it is, using exceptions [...] Try this instead, I f

Re: Copy the generated fonts to windows/fonts

2005-09-16 Thread Vitaly Lipatov
В сообщении от 16 Сентябрь 2005 16:11 Dmitry Timoshkov написал(a): > Hello, > > Changelog: > Dmitry Timoshkov <[EMAIL PROTECTED]> > Copy the generated fonts to windows/fonts. Dmitry, why we need to copy these fonts? Can we use symlinks for it? -- Vitaly Lipatov, ALT Linux Team Russia, Sai

Re: Copy the generated fonts to windows/fonts

2005-09-16 Thread Andreas Mohr
Hi, On Fri, Sep 16, 2005 at 09:11:04PM +0900, Dmitry Timoshkov wrote: > Hello, > > Changelog: > Dmitry Timoshkov <[EMAIL PROTECTED]> > Copy the generated fonts to windows/fonts. > +rm -f "$CROOT/windows/fonts/$i" && cp "$fontsdir/$i" > "$CROOT/windows/fonts/$i" || echo "Warning: fa

Re: [AppDB] new server supports GD2

2005-09-16 Thread Jeremy Newman
Yes it is. PHP Version: 4.3.10 from phpinfo() [gd] GD Support enabled GD Version 2.0 or higher FreeType Support enabled FreeType Linkage with freetype T1Lib Support enabled GIF Read Support enabled GIF Create Support enabled JPG Support enabled PNG Support enabled WBMP Support

Re: listview crash fix

2005-09-16 Thread Dimi Paun
On Wed, 2005-09-14 at 15:16 +0200, Michael Jung wrote: > > To be honest, I don't like this solution at all, I'll try > > a different approach tonight, but in the meanwhile... OK, here it is, using exceptions instead of cluttering the code with tests all over the place. Obviously, it is much cleane