http://bugs.winehq.org/show_bug.cgi?id=4912
ben(a)atomnet.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From ben(a)atomnet.co.uk 2006-07-08 11:20 -------
Ok, the video thing was my bad, my MODES line in xorg got wiped somehow.
Anyways, this bug is technically fixed because the game starts now but crashes
on the menu (which is a different bug, not this one) so this regression got
fixed somewhere along the way.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5041
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
------- Additional Comments From tony.lambregts(a)gmail.com 2006-07-08 10:56 -------
Please add an entry for this program in the AppDB http://appdb.winehq.org/
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5547
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-07-08 10:54 -------
Wai Ling Tsang, function parameters aren't displayed in your backtraces.
Possibly this is due to building Wine without debug info or stripping it away
after your binaries have been built. Are you building it from the source, Wai
Ling Tsang?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=5039
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|download |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5882
wdev(a)foltman.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
------- Additional Comments From wdev(a)foltman.com 2006-07-08 10:28 -------
Matt, does the problem occur in the new repaint code too? (NSIS installer
worked and works for me, so I can't check)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5882
------- Additional Comments From MattFinn(a)gmail.com 2006-07-08 10:26 -------
The problem stems from ME_MoveCaret being run with paragraphs marked for
rewrapping, but not wrapped yet.
A possible fix would be to just wrap things at that point:
diff --git a/dlls/riched20/caret.c b/dlls/riched20/caret.c
index 5124822..ebfcff5 100644
--- a/dlls/riched20/caret.c
+++ b/dlls/riched20/caret.c
@@ -175,6 +175,7 @@ ME_MoveCaret(ME_TextEditor *editor)
{
int x, y, height;
+ ME_WrapMarkedParagraphs(editor);
ME_GetCursorCoordinates(editor, &editor->pCursors[0], &x, &y, &height);
CreateCaret(editor->hWnd, NULL, 0, height);
SetCaretPos(x, y);
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5879
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From vitaliy(a)kievinfo.com 2006-07-08 10:24 -------
Patch already commited.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5882
Summary: riched20: NSIS-Installer Regression (crash after
assert(!(ME_GetParagraph(pCursorRun)->member.para.nFlags
& MEPF_REWRAP))
Product: Wine
Version: CVS
Platform: PC
URL: http://nsis.sf.net
OS/Version: Linux
Status: NEW
Keywords: regression, download, source
Severity: normal
Priority: P2
Component: wine-richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
CC: wdev(a)foltman.com
While verifying Bug #4563, i found a Regression.
This commit:
http://source.winehq.org/git/?p=wine.git;a=commitdiff;h=3a0c15e939a5a02f911…
Causes all Applications with an NSIS-Installer to crash during Install,
when the License should be displayed.
(Verified with NSIS 2.14, NSIS 2.19, vlc 0.8.4a (uses NSIS 2.11)
and vlc 0.8.5 (uses NSIS 2.16-1))
/home/detlef/wine.cvs/src/dlls/riched20/caret.c:121: ME_GetCursorCoordinates:
Zusicherung »!(ME_GetParagraph(pCursorRun)->member.para.nFlags & 1)« nicht erfüllt.
wine: Assertion failed at address 0xffffe410 (thread 0009), starting debugger...
WineDbg starting on pid 0x8
Unhandled exception: assertion failed in 32-bit code (0xffffe410).
After commenting out the assert, the Installation works:
(verified with the same Apps as above)
+ assert(!(ME_GetParagraph(pCursorRun)->member.para.nFlags & MEPF_REWRAP));
--
By By ... Detlef
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.