http://bugs.winehq.org/show_bug.cgi?id=20961
Summary: RegEditX doesn't work in wine
Product: Wine
Version: 1.1.34
Platform: PC
URL: http://www.dcsoft.com/ftp/REGX2.EXE
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Application description: RegEditX "extends" the Windows Registry Editor
(REGEDIT). A new history combo box and toolbar are inserted. You gain quick
navigation back to recently-visited keys, the ability to paste keys from the
Windows clipboard, and incrementally type the keys manually. In addition,
columns in the listbox are kept optimally sized.
Doesn't work in wine:
Internal error: could not find RegEdit window
--
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=11099
Summary: custom checkbox not displayed
Product: Wine
Version: 0.9.52.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stuart(a)gathman.org
All the taxact versions use a custom checkbox that draws a large X for on
screen tax forms. These always display as blank. They are drawn correctly on
printout. The appdb entry is
http://appdb.winehq.org/objectManager.php?sClass=application&iId=1265
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9422
Summary: Regression from 0.9.36 to 0.9.42/43 when running visio
2003
Product: Wine
Version: 0.9.43.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jokester01au(a)yahoo.com.au
Created an attachment (id=7748)
--> (http://bugs.winehq.org/attachment.cgi?id=7748)
Log trace of failed run under 0.9.43
This may or may not be related to bug #5163.
On 0.9.36 I have a working installation of visio 2003.
After upgrading to 0.9.42 visio ceases to work, failing with the message "iopl
not enabled".
Ditto for 0.9.43.
After reverting back to 0.9.36, visio 2003 again works.
Word and Excel 2003 seem to work happily on all of these versions of wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17708
Summary: Splinter cell double agent doesn't render correctly
Product: Wine
Version: 1.1.16
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puciek(a)gmail.com
Created an attachment (id=19904)
--> (http://bugs.winehq.org/attachment.cgi?id=19904)
Log from start till i had to kill the game (compressed because its 25mb)
Game renders only part of ui and character, rest is just darkness.
--
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=18759
Summary: RoughDraft 3's Word Count feature always says zero
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://www.salsbury.f2s.com/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user reported in http://jainakay.livejournal.com/41083.html
that Rough Draft's word count feature fails, always reporting
that the document has zero words.
Sure enough, I tried Rough Draft 3, and he's right.
--
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=14078
Summary: Rewrite typelib marshaller on top of NDR functions
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
[Copied from wine-devel.]
Dan K. wrote in
http://www.winehq.org/pipermail/wine-devel/2008-June/066540.html
--- snip ---
While looking at the valgrind warning in
http://kegel.com/wine/valgrind/logs-2008-06-20/vg-oleaut32_tmarshal.txt
Conditional jump or move depends on uninitialised value(s)
at serialize_param (tmarshal.c:736)
by serialize_param (tmarshal.c:744)
by xCall (tmarshal.c:1414)
by ???
by func_tmarshal (tmarshal.c:1179)
by run_test (test.h:449)
by main (test.h:498)
Uninitialised value was created by a stack allocation
at test_typelibmarshal (tmarshal.c:762)
The problem happens during a call to this method
where widget is a pointer to an uninitialized pointer
which will receive the pointer to the widget:
interface IKindaEnumWidget : IUnknown
{
HRESULT Next(
[out] IWidget **widget);
I discovered that the attached patch prevented the problem.
I don't quite understand why; at first glance,
widget is an out parameter from the function,
why would it be dereferenced while serializing
the call?
--- snip ---
Rob Shearman wrote:
http://www.winehq.org/pipermail/wine-devel/2008-June/066571.html
--- snip ---
It's a bug in the typelib marshaller. It doesn't check whether a
VT_PTR type is actually an interface pointer and not access it on
input when the parameter is an [out] parameter. Note that because of
the memory re-use semantics it is legal to access memory passed in to
a remote function, even when the parameter is [out].
I think it's getting close to the time to reimplement the typelib
marshaller on top of NDR functions so that we don't have to implement
these subtleties twice, would improve performance and would reduce the
amount of code.
--- snip ---
--
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=19016
Summary: Unhandled type TKIND_COCLASS in oleaut
serialze_param() and deserialize_param()
Product: Wine
Version: 1.1.24
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joshudson(a)gmail.com
fixme:ole:serialize_param unhandled switch cases tattr->typekind 5
This causes Word Automation from .NET to not work.
Tell me how to get what logs you want and I'll be happy to provide them.
--
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=13092
Summary: Word Viewer in wine displayes hebrew reversed
Product: Wine
Version: 0.9.59.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ran.rutenberg(a)gmail.com
Hi,
I'm using wine 0.9.59 on Ubuntu 8.04. After installing Word Viewer (2003), and
opening a document written in Hebrew, the order of the letters in each word is
reversed, but the order of the words is right.
For example if there are two words that should appear like this (Hebrew is
written from right to left):
"FED CBA"
then on the Word Viewer in wine they appear like this:
"DEF ABC"
AFAIK this problem also occurs on other linux distros (I've seen it also on
Gentoo).
--
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=14043
Summary: WEBPAGEMAKER 2.5 OLE error 80004001 when running
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jabertolin914a(a)cv.gva.es
Hi
I tried to run Webpagemaker 2.5 (after a sucessful installation with Wine) and
I received the following messages:
OLE error 80004001
Access violation ... in module msxml3.dll
and I have to kill the process because it hangs.
Thanks
Juan
--
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=16988
Summary: Guild Wars regression in 1.1.13
Product: Wine
Version: 1.1.13
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: psycho_driver(a)yahoo.com
Guild Wars has been running consistantly well over the past couple dozen
releases but 1.1.13 has introduced a new bug. With UseGLSL = disabled and
winver = win2k on an amd64 gentoo 2008.0 desktop w/ a geforce 9800gt and binary
driver 180.22 a lot of graphics have become 'blocky', much of the text is now
unreadable, the compass texture is black, etc. etc.
Seems to work normally, but maybe slower than in the past, with UseGLSL =
enabled.
--
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.