http://bugs.winehq.org/show_bug.cgi?id=8898
--- Comment #8 from Petr Dlouhý <petr.dlouhy(a)email.cz> 2008-05-09 19:45:34 ---
Created an attachment (id=12857)
--> (http://bugs.winehq.org/attachment.cgi?id=12857)
RegisterAsBrowser
> How about trying a better stub, one that actually adds the getter and setter?
Do you mean something like this, or it should do something more?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9221
Adam Williamson <awilliamson(a)mandriva.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |awilliamson(a)mandriva.com
--- Comment #15 from Adam Williamson <awilliamson(a)mandriva.com> 2008-05-09 18:44:39 ---
I just wanted to record that Gerald's LFS fixes work for me with wine 0.9.60. I
took his original patch and just kept the LFS-specific bits, removing the
GPLegends bits, and it applied fine to 0.9.60 source. The compile wine seems to
produce correct force feedback behaviour with LFS.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8066
--- Comment #14 from Dan Kegel <dank(a)kegel.com> 2008-05-09 18:42:08 ---
Great, post that to wine-patches and say which versions of
windows you've tested it on. Thanks!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8132
Andrew Talbot <Andrew.Talbot(a)talbotville.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
--- Comment #26 from Andrew Talbot <Andrew.Talbot(a)talbotville.com> 2008-05-09 17:34:28 ---
Yes, that fixed it. Thanks, Alex, for all your help, and very well done!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5351
Ken Jackson <KenJackson(a)ieee.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |KenJackson(a)ieee.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8066
Nikolay Sivov <bunglehead(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #12846|0 |1
is obsolete| |
--- Comment #13 from Nikolay Sivov <bunglehead(a)gmail.com> 2008-05-09 16:59:04 ---
Created an attachment (id=12848)
--> (http://bugs.winehq.org/attachment.cgi?id=12848)
patch + test
I've tested this case on Windows using MSVS debugger and have found that
CreateDIBSection call reset <bits> pointer to NULL on error (accordingly to
MSDN), so I added this behaviour too.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8066
--- Comment #12 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> 2008-05-09 16:32:07 ---
>How have you tested it on Windows?
don't remember it exactly
>Something like this is acceptable in native dll:
Like Dan said, if it's acceptable, add a test that both passes in windows and
wine. Maybe the test i made was wrong somehow. Anyway, good luck!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8066
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
--- Comment #11 from Dan Kegel <dank(a)kegel.com> 2008-05-09 16:01:31 ---
Please add a conformance test and make sure it passes
on both Wine and Windows.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8066
--- Comment #10 from Nikolay Sivov <bunglehead(a)gmail.com> 2008-05-09 15:51:53 ---
(In reply to comment #9)
> @Nikolay: it will certainly help , but it's wrong. I already sent something
> like that long time ago:
> http://www.winehq.org/pipermail/wine-patches/2007-May/039496.html
>
> After it was rejected, i tested on windows, and found this fix is not correct.
> Ergo, the cause of this crash must be somewhere else
>
How have you tested it on Windows?
Something like this is acceptable in native dll:
{
HBITMAP bm;
void* data;
bm = CreateDIBSection(hdc,NULL,0,&data,NULL,0);
}
Saying somewhere else you meant that wine dlls made this call with NULL arg? If
it's true we should check that first of course. But argument check in
CreateDIBSection is necessary, cause native version support this null-pointer
arg.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8132
--- Comment #25 from Alex Villacís Lasso <a_villacis(a)palosanto.com> 2008-05-09 15:49:30 ---
Created an attachment (id=12847)
--> (http://bugs.winehq.org/attachment.cgi?id=12847)
richedit: Insertion style must NOT be cleared unless selection actually changed
richedit: Insertion style must NOT be cleared unless selection actually
changed.
I was able at last to reproduce the bug on my machine. It happens that the
attached patch, applied after all the others, does fix the bug. I thought this
last patch was not relevant, since it was for a different program. But
reverting this private patch makes the bug reappear. So I am posting it here.
Please apply after the entire previous series of patches.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.