http://bugs.winehq.com/show_bug.cgi?id=1226
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-01-19 11:37 -------
Please retry with Wine CVS in about a week; Roderick Colenbrander just submitted
an IPX configure script fix that might also fix that particular issue.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1226>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1232
Summary: Treeview refuses to sort
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: taviso(a)sdf.lonestar.org
using Kazaalite with builtin comctl32, if i try to sort a treeview by clicking
on a column title, wine wont sort it and prints this message
err:treeview:TREEVIEW_Sort invalid item hParent=0
as a temporary workaround, i changed the following in TREEVIEW_Sort() from
treeview.c
/* Check for a valid handle to the parent item */
if (!TREEVIEW_ValidItem(infoPtr, parent))
{
ERR("invalid item hParent=%x\n", (INT)parent);
return FALSE;
}
to
/* Check for a valid handle to the parent item */
if (!TREEVIEW_ValidItem(infoPtr, parent))
{
ERR("invalid item hParent=%x\n", (INT)parent);
/* return FALSE; */ /* i still requested a sort.... */
parent=infoPtr->root;
}
which does the trick for now, and all columns sort as you would expect.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1232>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=657
------- Additional Comments From puoti(a)inwind.it 2003-01-18 08:18 -------
If you can redistribute mfc42, where can I find it?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=657>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1231
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |hdavies(a)codeweavers.com
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-01-18 04:31 -------
Reassigning to Huw (sorry ! ;), since I'm not really in a position to comment on
that.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1231>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=854
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From marcus(a)jet.franken.de 2003-01-18 03:07 -------
you need to install the 'gdbm-devel' package, if it is on Mandrake.
Also please try again with a newer WINE version, it probably is fixed.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=854>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1231
Summary: fnt2bdf conversion omits font encoding
Product: Wine
Version: CVS
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jw1233219(a)hotmail.com
When fnt2bdf is used to convert .fon fonts to .bdf (then .pcf) via the
tools/font_convert.sh script the -c option to fnt2bdf is used to specify a
character set.
But this will create font names without the final "encoding" field.
Without an encoding field the font will not appear in xfontsel because xfontsel
requires exactly 14 fields in the font name.
A simple fix is to change "CHARSET=winsys" in font_convert.sh to "CHARSET=winsys-".
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1231>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1084
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-01-18 02:17 -------
Errhumm, can't we mention the stdole32.tlb thing somewhere within some related
error message output in the trace ?
(not doing so would be stupid IMHO :)
Which error message would have to be modified, then ?
Or maybe even several error messages in the trace from Mr. Seelhoff should
mention the stdole32.tlb thing ?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1084>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1220
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |marcus(a)jet.franken.de
Status|NEW |ASSIGNED
------- Additional Comments From marcus(a)jet.franken.de 2003-01-18 01:58 -------
The problem is:
The program calls GetClassName, with the buffer initialised
for some strange reason to the expected return value (probably
left over from somewhere). It does not expect GetClassName()
to fail and just checks the buffer.
The attached Hack fixes the problem for now, the correct fix
is to handle interprocess class access.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1220>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1084
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From marcus(a)jet.franken.de 2003-01-18 01:03 -------
please download the 'stdole32.tlb' file somewhere and copy it to your windows/system directory. (You can use: http://www.lst.de/~mm/stdole32.tlb )
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1084>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1084
------- Additional Comments From calebs3(a)yahoo.com 2003-01-17 20:09 -------
I tried running a install shield for 3d Mark 2001 from MadOnion. When I typed
"wine Setup.exe", in the terminal, it gave me this output:
[root@localhost /]# wine Setup.exe
fixme:seh:check_resource_write Broken app is writing to the resource data,
enabling work-around
fixme:ole:CoTreatAsClass
({8c3c1b17-e59d-11d2-b40b-00a024b9dddd},{22d84ec7-e201-4432-b3ed-a9dca3604594})
fixme:ole:_get_funcdesc Did not find a typeinfo for reftype 0?
fixme:ole:PSFacBuf_CreateProxy GetFuncDesc 80004005 should not fail here.
fixme:ole:StdMarshalImpl_UnmarshalInterface Failed to create a proxy for
{91814ec1-b5f0-11d2-80b9-00104b1f6cea}
fixme:ole:CoUnmarshalInterface Failed to Unmarshal the interface, 80004005?
fixme:ole:_unmarshal_interface Marshaling interface
{91814ec1-b5f0-11d2-80b9-00104b1f6cea} failed with 80004005
fixme:ole:deserialize_param failed to stuballoc in TKIND_RECORD.
fixme:ole:xCall Failed to unmarshall param, hres 80004005
wine: Unhandled exception, starting debugger...
err:wineconsole:WCUSER_SetFont wrong font
err:wineconsole:WCUSER_SetFont wrong font
err:wineconsole:WCUSER_SetFont wrong font
err:wineconsole:WCUSER_SetFont wrong font
fixme:ole:_xread Read only 0 of 4 bytes from 0x48.
fixme:ole:_StubReaderThread Failed with hres 80004005
My Wine version is: 20030115
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1084>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.