Re: GSoC 2013 proposal: Implement XPath from scratch

2013-04-12 Thread Alex Bradbury
lan to stop using libxml2 and have our own code (likely a lot of own code). What is the motivation behind moving away from libxml2? Alex

Re: [PATCH 1/4] kernel32: Support UTF-7 in MultiByteToWideChar.

2012-12-09 Thread Alex Henrie
ng for this or something else? Who could I ask for help? -Alex

Re: [PATCH 1/4] kernel32: Support UTF-7 in MultiByteToWideChar.

2012-12-05 Thread Alex Henrie
technical problem as it is a communication problem--I don't know what "interesting cases" you have in mind that are not already covered by the tests. Perhaps these cases would be obvious to a more experienced developer, but they are not to me. -Alex

Re: [PATCH 1/4] kernel32: Support UTF-7 in MultiByteToWideChar.

2012-12-04 Thread Alex Henrie
Correction: Item 3 should have been "Put the code in kernel32." -Alex

Re: [PATCH 1/4] kernel32: Support UTF-7 in MultiByteToWideChar.

2012-12-04 Thread Alex Henrie
2012/12/4 Alexandre Julliard : > Alex Henrie writes: > >> My implementation is modeled after Windows XP (Wine's default target >> Windows version), which encodes and decodes arbitrary character >> sequences without normalization. I saw that my submission has already &

Re: [PATCH 1/4] kernel32: Support UTF-7 in MultiByteToWideChar.

2012-12-04 Thread Alex Henrie
e it's turned off in Windows XP (or older) mode. -Alex

Re: [PATCH 1/4] kernel32: Support UTF-7 in MultiByteToWideChar.

2012-12-03 Thread Alex Henrie
s default target Windows version), which encodes and decodes arbitrary character sequences without normalization. I saw that my submission has already been marked "rejected"--was this why? -Alex

Re: [PATCH 1/3] kernel32: Support UTF-7 in MultiByteToWideChar.

2012-09-03 Thread Alex Henrie
n = strlen(src) + 1, see http://source.winehq.org/git/wine.git/blob/2097c5ddb6bec24cf4bbd440a6f401cfa67007f0:/dlls/kernel32/locale.c#l1929 So again, what specific additional test, or what specific change to the existing tests, do you want to see? -Alex

Re: kernel32: Add UTF-7 support. (try 4)

2012-08-19 Thread Alex Henrie
Correction: I meant to write that try 4 exits the loop slightly faster when ending a base64 sequence, it has nothing to do with escaped plus signs which are handled a few lines earlier. -Alex

Re: Error 123

2012-07-31 Thread Alex Henrie
To use serial ports on Linux, your user must be a member of the "dialout" group. -Alex

Re: What's the right way to implement _wtoi_l?

2012-07-23 Thread Alex Henrie
tests for wtoi, there are a LOT of them: http://source.winehq.org/git/wine.git/blob/7b89de9e481cf8cca264dc48c444f2c33537afad:/dlls/ntdll/tests/string.c#l785 Could I just copy the wtoi code and not the tests? Also, out of curiosity, why can't you call a function in ntdll.dll from msvcrt.dll? -Alex

What's the right way to implement _wtoi_l?

2012-07-22 Thread Alex Henrie
parameter for now. 2. Forward msvcr90._wtoi_l to ntdll._wtoi via msvcr90.spec, ignoring the locale parameter for now. 3. Implement msvcr90._wtoi_l as a stub function in msvcrt that always returns 0. Any of these options would fix bug 24389. Which one should I work on? -Alex

Re: wininet: Support ICU_ENCODE_PERCENT, ICU_ENCODE_SPACES_ONLY, and ICU_NO_META.

2012-07-19 Thread Alex Henrie
not sure a test for it is necessary. That said, if you would like me to include a few tests in the patch, let me know. -Alex

Re: Is it safe yet for developers to upgrade to Ubuntu 12.04?

2012-06-25 Thread Alex Henrie
the wiki page with instructions for using chroot: http://wiki.winehq.org/WineOn64bit It seems to work fine now. Good luck! -Alex

Re: Examples of AJ silently improving patches?

2012-06-20 Thread Alex Henrie
Here is an example: http://www.winehq.org/pipermail/wine-patches/2011-December/109805.html http://www.winehq.org/pipermail/wine-devel/2011-December/093517.html http://source.winehq.org/git/wine.git/commitdiff/6e5bba1b60f97fce34415ea30ebecd5bd20dae20 -Alex

kernel32: Correct WideCharToMultiByte and MultiByteToWideChar error codes and conditions

2012-05-16 Thread Alex Henrie
Hello, This patch was marked committed yesterday--thank you for accepting it!--but it still isn't showing up in Git. Maybe it was accidentally skipped? It needs to be committed before I can submit the UTF-7 implementation I wrote that builds on it. -Alex

Re: kernel32: Correct WideCharToMultiByte and MultiByteToWideChar error codes and conditions (try 4)

2012-05-10 Thread Alex Henrie
2012/5/10 Juan Lang : > Hi Alex, > first, thanks for taking the time to respond to feedback.  Showing > responsiveness helps a great deal. You're welcome :-) > These helpers don't really gain you anything here, there's really not > enough code to be worth using he

Re: kernel32: Correct WideCharToMultiByte and MultiByteToWideChar error codes and conditions

2012-05-09 Thread Alex Henrie
2012/5/10 Nikolay Sivov : >> Which file should I have used? > > codepage.c, you could search all test files for a thing you're trying to > add. Okay, I've moved the tests to codepage.c in try 4. Thanks for the tip, I'll keep that in mind from now on. > Nothing really changed in try3, test helpers

Re: kernel32: Correct WideCharToMultiByte and MultiByteToWideChar error codes and conditions

2012-05-09 Thread Alex Henrie
loop > through it, if you really want to test that. A loop is probably overkill, but I will clean it up some more. Thanks for the feedback, -Alex

Re: kernel32: Add UTF-7 support

2012-05-09 Thread Alex Henrie
2012/5/8 Alexandre Julliard : > That code is hopelessly ugly, and broken in various ways. You are > probably better off starting from scratch. Okay. Could we use the POSIX iconv functions? Why doesn't Wine use iconv for UTF-8 already? -Alex

Re: kernel32: Add UTF-7 support

2012-05-07 Thread Alex Henrie
for UTF-7 which are not needed for UTF-8? Thanks for your quick response, -Alex

kernel32: Add UTF-7 support

2012-05-07 Thread Alex Henrie
he LGPL at http://bugs.winehq.org/show_bug.cgi?id=27388 What more needs to be done before this patch can be accepted? -Alex

Re: SoC 2012 Ideas

2012-03-29 Thread Alex Bradbury
can also add a 'nonet' group, configure an iptables rule to drop all packets from that gid and then use sg to execute wine using that nonet group. Of course this assumes the apps you run don't or can't switch from nonet to another group. Alex

Instructions for using JACK with with Wine's ALSA output on wiki: reverted twice

2012-03-11 Thread Alex Bradbury
oved to a separate page linked to from there. Thank you, Alex

Re: [PATCH 1/2] winmm: Avoid using SuspendThread, it can hang Wine.

2012-02-17 Thread Alex Bradbury
eed patch 1+2. You mean #26697 Alex

Re: Translators wanted!

2012-02-17 Thread Alex Bradbury
On 17 February 2012 11:12, Yaron Shahrabani wrote: > I would go for the more popular options such as Transifex, TranslateWiki, or > Pootle. > > Is this even an option? See http://wiki.winehq.org/Translating#head-e1a500fef50a1801ecea706ebd9b51457943f102 "3. Web-based translations systems" Quotin

Re: po: Fix some trailing ellipses errors in Catalan translation

2012-02-07 Thread Alex Henrie
#: ieframe.rc:68 winhlp32.rc:66 msgid "Print..." -msgstr "Imprimeix" +msgstr "Imprimeix..." I intentionally left the ellipse off of the word "Imprimeix" in Internet Explorer so that the text would fit on the toolbar button. Any suggestions? -Alex

Re: Interesting - performance issues in Natural Selection 2 dedicated server

2012-01-12 Thread Alex Bradbury
wineserver, which in many cases may have much higher overhead than native windows. http://www.winehq.org/docs/winedev-guide/x2550 Alex

Re: Rethinking WineConf

2012-01-10 Thread Alex Bradbury
a concerted effort to make sure Wine is well represented at events many developers and users already attend such as FOSDEM and OSCON. Alex

UTF-7

2012-01-09 Thread Alex Henrie
libs/wine/utf8.c? -Alex

Re: [PATCH] comdlg32: Correctly handle filters with multiple file extensions in Save As dialogs (try 3)

2011-12-20 Thread Alex Henrie
n, not my patch. -Alex

Re: [PATCH 2/2] comdlg32: Widen buffer to accomodate Catalan translation

2011-12-16 Thread Alex Henrie
Thanks for the feedback. It looks like Alexandre widened the buffer to 64 characters when he committed the patch. -Alex

Re: [PATCH] comdlg32: Remove system menu from Find and Replace dialogs

2011-12-12 Thread Alex Henrie
perly and posted it to Bugzilla: http://bugs.winehq.org/show_bug.cgi?id=29336 Please let me know if this new patch is the correct solution. -Alex

Strange window manager bug

2011-11-09 Thread Alex Henrie
Does anyone have an idea of what could be causing http://bugs.winehq.org/show_bug.cgi?id=29027 ? -Alex

Re: [PATCH] kernel32: Output message to stderr in UTF-8

2011-10-25 Thread Alex Henrie
m not sure that my patch fixes the bug correctly. I made WideCharToMultiByte use CP_UTF8 instead of CP_ACP, but reading more about the codepage setting, I think I should have used either CP_UNIXCP or CP_OEMCP. Could anyone help clarify which should be used? -Alex

Re: [PATCH] winex11: Make MapColor fall back to GetNearestIndex

2011-09-29 Thread Alex Henrie
IB rendering and converting the X11 result > back into a DIB. You're right: the DIB engine would be much better. What needs to be done to get the DIB engine to work with Age of Empires II? -Alex

Re: winecfg: Remove driver selection from Audio tab.

2011-09-29 Thread Alex Bradbury
is fixed. Or a work around found. People complaining about the difficulty of getting a patch in to wine already seems to be an issue. This all sounds a little arbitrary to me. I do subscribe to wine-bugs and it seems to me that most bisected regressions get addressed promptly. Alex

Re: [PATCH] Enable X11DRV_DIB_GetImageBits_8 in all cases and optimize X11DRV_DIB_GetNearestIndex to fix bug 2666 and other strange behavior

2011-09-28 Thread Alex Henrie
2011/9/28 Alex Henrie > I figured that it didn't work because I wasn't subscribed to wine-devel > I meant to say, it didn't work because I wasn't subscribed to wine-patches... -Alex

Re: [PATCH] Enable X11DRV_DIB_GetImageBits_8 in all cases and optimize X11DRV_DIB_GetNearestIndex to fix bug 2666 and other strange behavior

2011-09-28 Thread Alex Henrie
and submitted it again, and then both attempts went through. In any case, I hope you find the patch helpful and I'll do better about submitting patches properly in the future. -Alex

Re: winecfg: Remove driver selection from Audio tab.

2011-09-28 Thread Alex Bradbury
7;t want regressions in their favourite apps/games should be using the stable release. It doesn't seem fair to complain about regressions being ignored unless 1.4 releases with a significant number of them. Alex

Re: RFC: Highlighting Fall-throughs

2011-09-22 Thread Alex Bradbury
with fall-through without a comment marking it as intentional. Alex

Re: Daily builds of latest Git now available as Ubuntu packages

2011-09-01 Thread Alex Bradbury
tain header files and there is no other package that can provide the 32-bit header. Perhaps proper multilib support in the upcoming 11.10 provides a solution? Alex

Re: configure: Disable gstreamer support if headers are not compatible with build environment. (try 2)

2011-08-05 Thread Alex Villací­s Lasso
that, on my 64-bit system, both glib2-devel.i686 and glib2-devel.x86_64 are installed: [alex@srv64 wine-build]$ rpm -qf /usr/lib64/glib-2.0/include/glibconfig.h glib2-devel-2.26.0-2.fc14.x86_64 [alex@srv64 wine-build]$ rpm -qf /usr/lib/glib-2.0/include/glibconfig.h glib2-devel-2.26.0-2.fc14.i686

Re: Traces with threading

2011-07-03 Thread Alex Bradbury
ks up and it'd be really nice to quickly identify which one is doing > what. Unless I've totally misunderstood your question: http://wiki.winehq.org/DebugChannels WINEDEBUG=+tid Alex

Re: Dylan Smith : d3dx9/tests: Added tests for D3DXCreateSkinInfo.

2011-06-24 Thread Alex Bradbury
irst use > in this function) Austin English ran in to the same problem: http://bugs.winehq.org/show_bug.cgi?id=27583 Alex

Re: [2/2] oledb32/tests: Add the XP+ behaviour and mark it as todo_wine

2010-11-10 Thread Alex Villací­s Lasso
El 10/11/10 15:02, André Hentschel escribió: That's the behaviour of XP and up: http://test.winehq.org/data/tests/oledb32:convert.html It's tricky to fix in Wine as you really don't know how much space you have in dst and assuming space breaks other tests. --- dlls/oledb32/tests/convert.c |

[PATCH] winedevice: Use 64-bit wide delta when relocating

2010-06-22 Thread alex . pigna
Hi Everyone, when using Wine64 relocations should use 64-bit wide deltas, winedevice was not compliant with this. Patch follows Regards, Alessandro Pignotti --- programs/winedevice/device.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/programs/winedevice/device.c

Re: Trouble compiling Wine tests with Cygwin

2010-02-22 Thread Alex Villací­s Lasso
El 22/02/10 12:41, Austin English escribió: On Mon, Feb 22, 2010 at 11:03 AM, Alex Villací­s Lasso wrote: I have a VB6 application that requires oledb32 to convert from DBTYPE_VARIANT to DBTYPE_BYTES, and fails with builtin oledb32 since conversions to DBTYPE_BYTES are unimplemented. I

Trouble compiling Wine tests with Cygwin

2010-02-22 Thread Alex Villací­s Lasso
I have a VB6 application that requires oledb32 to convert from DBTYPE_VARIANT to DBTYPE_BYTES, and fails with builtin oledb32 since conversions to DBTYPE_BYTES are unimplemented. I set up a VirtualBox VM with Windows XP and the latest Cygwin in order to add a oledb32 test to show me what should

Re: makefiles: Add some msvcrt imports needed under Cygwin

2010-02-21 Thread Alex
On Mon, Feb 22, 2010 at 1:25 AM, Steven Edwards wrote: > Unless something has changed I don't think we want to do this anyway. > What we need is something like the EXTRALIBS rule that adds msvcrt if > its on cygwin. Take a look at what we do in wininet so that we link to > winsock on mingw but use

Re: makefiles: Add some msvcrt imports needed under Cygwin

2010-02-21 Thread Alex
Le 21/02/2010 18:48, Austin English a écrit : On Sat, Feb 20, 2010 at 11:20 AM, wrote: diff --git a/programs/xcopy/Makefile.in b/programs/xcopy/Makefile.in index dce8259..1a36216 100644 --- a/programs/xcopy/Makefile.in +++ b/programs/xcopy/Makefile.in @@ -5,7 +5,7 @@ SRCDIR= @srcdir@

Unable to cleanly install cups-devel.i686 on a Fedora 12 x86_64 machine

2009-12-10 Thread Alex Villací­s Lasso
I have just updated my setup to Fedora 12 on 64 bits, and I want to compile Wine for this setup. I followed the instructions at: http://wiki.winehq.org/WineOn64bit on the section for Fedora 12. However, I have the following error when trying to install the packages as directed by the wiki: Er

Re: Bug for beginners

2009-08-21 Thread Alex Dermenakis
Thanks to both of you Andrew and Juan. I think though I'll with Andrew's suggestion. ;-) On Thu, Aug 20, 2009 at 11:58 PM, Andrew Eikum wrote: > Alexandros Dermenakis wrote: > >> Hi all, >> >> I studied the wine developer's guide and went a bit through the code. I >> would like a suggestion, a bu

Re: winemp3.acm: link to system libmpg123.so

2009-08-19 Thread Alex Villací­s Lasso
Rosanne DiMesio escribió: On Wed, 19 Aug 2009 15:48:10 -0500 Alex Villací­s Lasso wrote: The libmpg123 library is not shipped in any rpmfusion repository for Fedora 10, and possibly for other distros. This means anyone who wants mp3 support would need to install libmpg123 from source

Re: winemp3.acm: link to system libmpg123.so

2009-08-19 Thread Alex Villací­s Lasso
Aric Stewart escribió: --- configure.ac | 12 + dlls/winemp3.acm/Makefile.in | 11 +- dlls/winemp3.acm/common.c | 261 --- dlls/winemp3.acm/dct64_i386.c | 329 dlls/winemp3.acm/decode_i386.c | 164 dlls/winemp3.acm/huffman.h | 346 -

Re: Debugging tools

2009-08-10 Thread Alex Dermenakis
> I just would try to use Kdevelop, but i dont know if it will work. > Actually KDevelop works. I created a new empty project and Imported the whole git repository and I chose to use wine's custom MakeFile and configure files. I'm not able though to start the debug properly but I'm working on it.

Re: How do I actually write a testcase for a 16-bit API ?

2009-06-09 Thread Alex Villací­s Lasso
Dmitry Timoshkov escribió: "Alex Villací­s Lasso" wrote: I recently filed http://bugs.winehq.org/show_bug.cgi?id=18734 in which I showed that DlgDirList is behaving incorrectly for 16-bit apps. I also included a test program compiled with the Watcom C compiler, as well as a pat

Re: How do I actually write a testcase for a 16-bit API ?

2009-06-08 Thread Alex Villací­s Lasso
Austin English escribió: On Mon, Jun 8, 2009 at 2:46 PM, Alex Villací­s Lasso wrote: I recently filed http://bugs.winehq.org/show_bug.cgi?id=18734 in which I showed that DlgDirList is behaving incorrectly for 16-bit apps. I also included a test program compiled with the Watcom C compiler, as

How do I actually write a testcase for a 16-bit API ?

2009-06-08 Thread Alex Villací­s Lasso
I recently filed http://bugs.winehq.org/show_bug.cgi?id=18734 in which I showed that DlgDirList is behaving incorrectly for 16-bit apps. I also included a test program compiled with the Watcom C compiler, as well as a patch. Then a comment appeared saying that it should be possible to create a

Re: An idea for the appdb

2009-02-11 Thread alex
Just my opinion, but this project is not worth attempting at this point. > If that is the consensus, then I won't bother looking into this further. However, it seems like there is currently a movement to rework AppDB anyway, so why not consider this idea now, so it could be factored into those plans? -Alex

Re: An idea for the appdb

2009-02-11 Thread alex
allow this app to progress past the original crash point. Wine detects this and collects the information. Now when User C tries to run this app, Wine displays a message like: "This application has been known to fail under the current configuration. However, workarounds have been discovered that may yield greater success. " That would be pretty sweet, no? -Alex Corrado

Re: A proposal for increased security in wine - respecting previously expressed needs

2009-01-29 Thread alex
On Thu, 29 Jan 2009 14:07:13 -0500, Alex Villací­s Lasso wrote: > Guillaume SH escribió: >> Hi wine community, >> >> I took some time for reflexion following the thread "A step in the wrong >> direction, in an ocean of steps in the right direction" and to t

Re: A proposal for increased security in wine - respecting previously expressed needs

2009-01-29 Thread Alex Villací­s Lasso
Guillaume SH escribió: > Hi wine community, > > I took some time for reflexion following the thread "A step in the wrong > direction, in an ocean of steps in the right direction" and to the > explanations some of you kindly exposed to me. > > As a follow-up I am making a proposal. > > A - The propo

Re: richedit: do not read actual scrollbar state for scrollbar update, use internal state instead

2008-07-02 Thread Alex Villací­s Lasso
Alex Villací­s Lasso escribió: > This is supposed to be a fix for bug #12311 . This bug involves a > recursive message loop where the application forces visibility of > scrollbars for the richedit control, which causes a WM_SIZE that > triggers an update of the window size and re-h

richedit: do not read actual scrollbar state for scrollbar update, use internal state instead

2008-06-30 Thread Alex Villací­s Lasso
behavior that caused recursion until builtin richedit was fixed. -- perl -e '$x=2.4;print sprintf("%.0f + %.0f = %.0f\n",$x,$x,$x+$x);' >From b245faf80aa1b535b107a42ed5303f500d28eef0 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Alex=20Villac=C3=ADs=20Lasso?= <[EMAIL PROTECTED]&

Re: user32: Add additional tests for scroll state, make them pass under Wine

2008-06-30 Thread Alex Villací­s Lasso
hat was found and changed to be consistent. Having said that, I agree that it is better to implement the WinXP behavior. I will do that in a future patch. Reece Dunn escribió: > 2008/6/30 James Hawkins <[EMAIL PROTECTED]>: > >> On Mon, Jun 30, 2008 at 3:34 PM, Alex Villací­s

user32: Add additional tests for scroll state, make them pass under Wine

2008-06-30 Thread Alex Villací­s Lasso
differences between WinXP and Win98 scrollbar behavior * Make tests pass under Wine (Win98 behavior) -- perl -e '$x=2.4;print sprintf("%.0f + %.0f = %.0f\n",$x,$x,$x+$x);' >From b76e90dbc6905daf76ec0df957bc93965f22464a Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Alex=

Re: richedit: Implemented EM_STOPGROUPTYPING, fixed undo grouping (with tests)

2008-06-27 Thread Alex Villací­s Lasso
s, and >> will also prevent someone (such as myself) from accidentally breaking >> fixed behavior with further changes. >> >> >> > Alex: > > You are talking about fixing things. I was fixing EM_FONTRANGE before > 1.0 as it breaks several things.

Re: Some conformance tests a bit slow under Valgrind

2008-06-27 Thread Alex Villací­s Lasso
Dan Kegel escribió: > Under Valgrind, on my nice fast e7200 system, > the entire suite of tests takes about three hours to run. > > The slowest ten percent of the tests take over a third of the runtime. > > riched20's editor.c in particular spends way too long > (I think) on test_EM_AUTOURLDETECT.

richedit: fix failing EM_GETCHARFORMAT test on all platforms

2008-06-25 Thread Alex Villací­s Lasso
. Changelog: * Fix failing EM_GETCHARFORMAT test on all platforms -- perl -e '$x=2.4;print sprintf("%.0f + %.0f = %.0f\n",$x,$x,$x+$x);' >From a36e56af7080219ab6f762da210af2d81edd7a27 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Alex=20Villac=C3=ADs=20Lasso?= <[EMAIL PROTECTED]> Da

New scroll test, help in figuring out Win9x (Was: Re: new failing tests)

2008-06-24 Thread Alex Villací­s Lasso
James Hawkins escribió: Hi Alex, The following commit introduces several windows test failures across the board in riched20: commit 0e9ed5c10e3ac6b253712037f0b30046a5656239 Author: Alex Villacís Lasso <[EMAIL PROTECTED]> Date: Sun May 11 09:54:58 2008 -0500 richedit: Empty text

Re: [updated] winecfg: Added Windows registration information setting

2008-06-23 Thread Alex Villací­s Lasso
Filipe Ferreira escribió: > This is a combination of both patches from my earlier submission. The > reason I made them separate was because I am unable to test other > languages besides > English. Though, if anyone could tell me how to run wine under a > different language, I would test them. >

Re: richedit: Implemented EM_STOPGROUPTYPING, fixed undo grouping (with tests)

2008-06-23 Thread Alex Villací­s Lasso
Dylan Smith escribió: > EM_STOPGROUPTYPING simply ends the undo coalescing transaction. The > remarks for this message on MSDN explains what events stops group > typing, which led me to adding the delete key to the actions that stop > group typing. > > The tests that are included with this patch v

Re: richedit: (9/8) EM_POSFROMCHAR tests

2008-06-23 Thread Alex Villací­s Lasso
Alex Villací­s Lasso escribió: > Found while debugging #13864 . While it does not solve the bug, it is > worthwhile to get this out of the way. > > EM_POSFROMCHAR can return the position of the requested character > through either a pointer to a POINTL through wParam, or throug

Re: new failing tests

2008-06-23 Thread Alex Villací­s Lasso
James Hawkins escribió: > Hi Alex, > > The following commit introduces several windows test failures across > the board in riched20: > > commit 0e9ed5c10e3ac6b253712037f0b30046a5656239 > Author: Alex Villacís Lasso <[EMAIL PROTECTED]> > Date: Sun May 11 09:54:

About code freeze...

2008-06-17 Thread Alex Villací­s Lasso
Wine 1.0 is out! Great! Does this mean we are now out of code freeze? I have a bunch of richedit patches I submitted previously but were held up because of the code freeze. Is it time to submit them again? -- perl -e '$x=2.4;print sprintf("%.0f + %.0f = %.0f\n",$x,$x,$x+$x);'

richedit: text that does not need scrollbar should also result in a scroll range of 0. Tests for this behavior. Try 2.

2008-05-15 Thread Alex Villací­s Lasso
Alex Villací­s Lasso escribió: Eric Pouech escribió: Alex Villací­s Lasso a écrit : Even though the code freeze is still in effect, I post this so that it will be reviewed. For more information, see bug #12311. Changelog: * richedit: empty text should result in a scroll range of 0. * Tests

richedit: text that does not need scrollbar should also result in a scroll range of 0. Tests for this behavior.

2008-05-14 Thread Alex Villací­s Lasso
Eric Pouech escribió: Alex Villací­s Lasso a écrit : Even though the code freeze is still in effect, I post this so that it will be reviewed. For more information, see bug #12311. Changelog: * richedit: empty text should result in a scroll range of 0. * Tests for this behavior

quartz: regression: Assertion failed at pin.c:1236

2008-05-05 Thread Alex Villací­s Lasso
The patch: 3066116f76c0c44950fde3552485b37dce24d1f8 quartz: Clean up pullpin code. causes a regression in a test application I have. I see the following message in the console: pin.c:1236: PullPin_Init: La declaración `pCustomRequest' no se cumple. And I get an "Automation error" in a message

Re: richedit: add tests for EM_FINDTEXT in 1.0 emulation, make them pass under Wine

2008-04-30 Thread Alex Villací­s Lasso
Alex Villací­s Lasso escribió: > EM_FINDTEXT and EM_FINDTEXTEX have different rules for interpreting > ranges for 1.0 and 2.0 modes: > > In 1.0 emulation cpMin > cpMax is invalid and always fails. > In 1.0 emulation, search is always done between cpMin and cpMax, even > b

Re: Alex Villacís Lasso : uxtheme: Speed up UXTHEME_SizedBlt in the ST_T ILE by building an appropriately-sized me mory bitmap out of the tile instead of iterating with UXTHEME_Blt () directly

2008-04-22 Thread Alex Villací­s Lasso
Frank Richter escribio': > On 22.04.2008 13:47, Alexandre Julliard wrote: > >> uxtheme: Speed up UXTHEME_SizedBlt in the ST_TILE by building an >> appropriately-sized memory bitmap out of the tile instead of iterating with >> UXTHEME_Blt() directly. >> > > But does that keep the alpha cha

Re: installing wine into linux ubuntu

2008-04-17 Thread Alex Villací­s Lasso
stephen cooper escribió: > ref. Linux Format DVD 104 April 2008From: stephen cooper ([EMAIL PROTECTED]) > I am new to Linux.I have just installed Linux UBUNTU 7.1 (gutsy) onto my > computer with no problems. I want to install wine.I have written the source > code onto my hard disc. (using tar )

Re: WINEX11.DRV: workaround for unstable window state while handling MapNotify (fixes bug 12196)

2008-04-01 Thread Alex Villací­s Lasso
Alex Villací­s Lasso escribió: > > The attached patch seems to fix this issue for me. It issues > X11DRV_MapNotify > when it detects that the window is still marked as iconic on a > transition from > IconicState to NormalState. Please comment on this. > > See bug #1

Re: winex11.drv: Don't add owned windows to the taskbar

2008-03-31 Thread Alex Villací­s Lasso
Dmitry Timoshkov escribió: > "Alex Villací­s Lasso" <[EMAIL PROTECTED]> wrote: > > >>> The problem with IDA is that the button you see in the Windows task bar >>> does not belong to the main IDA window, it belongs to a zero sized visible >>>

Re: winex11.drv: Don't add owned windows to the taskbar

2008-03-28 Thread Alex Villací­s Lasso
Dmitry Timoshkov escribio': > "Alexander Dorofeyev" <[EMAIL PROTECTED]> wrote: > > >> There's a regression in IDA Pro disassembler. Nothing is added to the >> taskbar at >> all, furthermore, when you are starting debugger, before there was a window >> appearing that asks pass control to the a

Re: Is wine reporting the right value for MaxVertexBlendMatrices ?

2008-02-09 Thread Alex Jackson
> That said, GL_ARB_vertex_blend is not very common. Only MacOS supports it, > and > it is software emulated there. The Linux ATI driver used to support it until > ATI switched to a different codebase. So this constant ends up beeing 0 > almost everywhere. The extension was dropped in favor of

Re: question for dumps

2008-01-23 Thread Alex Villací­s Lasso
Alex Villací­s Lasso escribió: > Juan Carlos Montes escribió: > >> I dont like change the source to use all versions of wine... but... >> >> I'll try make a debugger to dump the memory. >> >> So... thanks a lot. >> >> Stefan Dösinger escrib

Re: question for dumps

2008-01-23 Thread Alex Villací­s Lasso
Juan Carlos Montes escribió: > I dont like change the source to use all versions of wine... but... > > I'll try make a debugger to dump the memory. > > So... thanks a lot. > > Stefan Dösinger escribió: > >> Am Dienstag, 22. Januar 2008 16:19:54 schrieb Juan Carlos Montes: >> >>> Hi all, >>>

Re: GDI32: GetSystemPaletteEntries should fill with default palette in non-palette video mode (with tests)

2007-12-13 Thread Alex Villací­s Lasso
Alex Villací­s Lasso escribió: > Patches originally by Alexander Dorofeyev <[EMAIL PROTECTED]>. > > This patch tries to fix bug #201 (igowin shows black squares instead > of proper transparency). It was sent back in October, but there was no > feedback back then. So I

Re: USER32: win16 applications should not see long filenames returned from dialog control (try 4)

2007-11-16 Thread Alex Villací­s Lasso
Alex Villacís Lasso escribió: > I hope this version addresses the fact DlgDirSelect does not modify the > last error code, and therefore cannot be used to distinguish between a > valid and an invalid file. > > Changelog: > * Applications should not see long filenames returned f

Re: RICHED20: fix test failure in test_WM_PASTE

2007-11-06 Thread Alex Villací­s Lasso
Alex Villacís Lasso escribió: > At last! I finally found the way to make native riched20 actually obey > keystrokes involving Ctrl and some other key. It seems that native riched20 > checks the actual keyboard state during WM_KEYDOWN processing, and won't > process keystrokes if t

Re: [SPAM] Re: USER32: win16 applications should not see long filenames returned from dialog control (try 2)

2007-11-05 Thread Alex Villací­s Lasso
Juan Lang escribió: >> What do you think about this version? >> > > Better, but still not correct: > +ret = DlgDirSelectExA( WIN_Handle32(hwnd), buffer, MAX_PATH, id ); > +if (GetLastError() == 0) GetShortPathNameA(buffer, str, len); > > You shouldn't check GetLastError() for whether D

Re: Cleanup of riched20 tests - request for help on test_WM_PASTE

2007-11-01 Thread Alex Villací­s Lasso
Alex Villací­s Lasso escribió: > I am currently trying to clean up the riched20 tests that are failing in > WinXP. While doing this, I have encountered the following problem: on > the function test_WM_PASTE() (at line 1959 of > dlls/riched20/tests/editor.c in current git), the test

Re: opengl problems (commit 00633e37bcc8da1032f34ea2d87814739de07db4)

2007-10-29 Thread Alex Romosan
"Juan Lang" <[EMAIL PROTECTED]> writes: > So please, do log that bug, and include the commit that broke it. it's been reported as bug 10234. --alex-- -- | I believe the moment is at hand when, by a paranoiac and active | | advance of the mind, it will be possi

Re: Bug in dlls/oleaut32/tests/vartype.c?

2007-10-29 Thread Alex Villací­s Lasso
+ ok(hres == S_OK, "got hres 0x%08lx\n", hres); >> + if (bstr) >> + { >> +todo_wine ok(memcmp(bstr, szZero, sizeof(szZero)) == 0, "negative >> zero (got %s)\n", wtoascii(bstr)); >> + } >> >> which was added in >>

Re: opengl problems (commit 00633e37bcc8da1032f34ea2d87814739de07db4)

2007-10-29 Thread Alex Romosan
"Juan Lang" <[EMAIL PROTECTED]> writes: > So please, do log that bug, and include the commit that broke it. should i attach the backtraces to the bug submission? --alex-- -- | I believe the moment is at hand when, by a paranoiac and active | | advance of the mind,

Re: opengl problems (commit 00633e37bcc8da1032f34ea2d87814739de07db4)

2007-10-29 Thread Alex Romosan
mebody else who knows more about this might find the traces of interest. i didn't simply just post back traces, i spent a whole day using git-bisect and recompiling wine until i found the commit that broke things for me. apparently you seem to think this is how wine should behave (and i don'

Re: opengl problems (commit 00633e37bcc8da1032f34ea2d87814739de07db4)

2007-10-29 Thread Alex Romosan
Alex Romosan <[EMAIL PROTECTED]> writes: > this was on my thinkpad t40 with a radeon r250 (mobility firegl 9000) > card using the open source drivers. the program also crashes on my > desktop with an nvidia card using the proprietary nvidia drivers but i > don't know i

Cleanup of riched20 tests - request for help on test_WM_PASTE

2007-10-29 Thread Alex Villací­s Lasso
I am currently trying to clean up the riched20 tests that are failing in WinXP. While doing this, I have encountered the following problem: on the function test_WM_PASTE() (at line 1959 of dlls/riched20/tests/editor.c in current git), the test is supposed to feed simulated keystrokes correspond

Re: opengl problems (commit 00633e37bcc8da1032f34ea2d87814739de07db4)

2007-10-28 Thread Alex Romosan
Chris Robinson writes: > On Sunday 28 October 2007 08:00:19 pm Alex Romosan wrote: >> somewhere between release 0.9.46 and 0.9.47 of wine i started having >> problems with applications that use opengl. using git-bisect i found >> that commit 00633e37bcc8da1032f34ea2d87814739

  1   2   3   4   >