http://bugs.winehq.org/show_bug.cgi?id=6116
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-05-09 11:32 -------
hi, i'm atm regression testing start trek armada installer on my laptop. this is
really a duplicate of that bug as it has exactly the same log/crash. Resolving
as such for now. More news soon i hope ;)
*** This bug has been marked as a duplicate of 5948 ***
--
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=6135
------- Additional Comments From vitaliy(a)kievinfo.com 2006-05-09 09:57 -------
Try "Virtual Desktop" mode - run program this way:
wine explorer /desktop=mydesktop,800x600 game.exe
--
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=5359
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |Abandoned?
------- Additional Comments From vitaliy(a)kievinfo.com 2006-05-09 09:51 -------
Please provide additional information.
--
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=6149
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #3545|text/plain |application/octet-stream
mime type| |
--
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=6149
stefan.munz(a)itomig.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |robert.jaehne(a)muenchen.de
--
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=6149
------- Additional Comments From stefan.munz(a)itomig.de 2006-05-09 08:01 -------
Created an attachment (id=3545)
--> (http://bugs.winehq.org/attachment.cgi?id=3545&action=view)
Printing on a virtual pdf printer, paper size is A4
For testing I installed cups-pdf and printed on a virtual pdf printer (HP
LaserJet 5M Postscript) with WINEDEBUG=+print+psdrv+winspool. My real printer
is a Lexmark Optra E312L. The error is exactly the same on both printers, the
virtual printer saves me some paper though ;-)
The papersize is A4 on both printers.
--
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=6149
david.guembel(a)gmx.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |david.guembel(a)gmx.de
--
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=5725
------- Additional Comments From jan.wine(a)zerebecki.de 2006-05-09 07:14 -------
I offered to compile-test the patch, as he said in a private mail that he is not
able to compile wine. I'll also then rediff and send the patch to -patches.
--
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=6149
Summary: The printout of 2 proprietary applications does not fit
on the paper
Product: Wine
Version: 0.9.20.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stefan.munz(a)itomig.de
If I try to print the printout is a little too big and shifted to the left.
Therefore it is cut off at the left side. This happens with two apps (GIS
Software and CAD Viewer both proprietary and unfortunately there is no demo
version available), others like my banking software print like a charm.
After some debugging I think, that maybe the ImageableArea is not set
correctly or the app overrides the settings for the margins of my printer.
When I change the margins in Linux (kubuntu if it matters), notepad uses this
margins but the other app doesn't.
I attach some logfiles with +print,+psdrv, +winspool.
BTW: I tried various Wine versions (from 2004109 to 0.9.20 ;-) The error stays
the same.
--
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=6148
Summary: since 0_9_18 edit fields are cleared when clicking in
them
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mteske(a)imagnos.com
This is happening with "Action Request System" (ARS) software by Remedy,
unfortunately not free.
When clicking into a text field which already has text in it, the text is cleared.
Through trying several versions of riched20.dll, I found out that this happened
between 0_9_17 and 0_9_18. The problem is in the WM_SETFONT-handling.
With trial-and-error I found that there the
if (bRepaint)
ME_UpdateRepaint(editor);
causes the problem. If I replace it with
if (bRepaint) {
/*ME_SendOldNotify(editor, EN_CHANGE);*/
ME_Repaint(editor);
ME_SendOldNotify(editor, EN_UPDATE);
ME_SendSelChange(editor);
}
everything works, so ME_SendOldNotify(editor, EN_CHANGE); seems to cause the
problem. Unfortunately I couldn't find what that does yet...
Let me know if you need any traces.
--
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.