http://bugs.winehq.org/show_bug.cgi?id=15397
Summary: gdi32: path.c fails to build with gcc 4.2, -Werror -O3
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: source
Severity: enhancement
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
ccache /usr/bin/gcc-4.2 -O3 -c -I. -I. -I../../include -I../../include
-I/usr/include/freetype2 -D__WINESRC__ -D_GDI32_ -D_REENTRANT -fPIC -Wall
-pipe -fno-strength-reduce -fno-strict-aliasing -Wdeclaration-after-statement
-Wwrite-strings -Wpointer-arith -Werror -o path.o path.c
cc1: warnings being treated as errors
path.c: In function ‘PATH_PolyPolygon’:
path.c:1079: warning: ‘startpt.y’ may be used uninitialized in this
function
path.c:1079: warning: ‘startpt.x’ may be used uninitialized in this
function
make: *** [path.o] Error 1
Relevant code:
BOOL PATH_PolyPolygon( DC *dc, const POINT* pts, const INT* counts,
UINT polygons )
{
GdiPath *pPath = &dc->path;
POINT pt, startpt;
UINT poly, i;
INT point;
/* Check that path is open */
if(pPath->state!=PATH_Open)
return FALSE;
for(i = 0, poly = 0; poly < polygons; poly++) {
for(point = 0; point < counts[poly]; point++, i++) {
pt = pts[i];
if(!LPtoDP(dc->hSelf, &pt, 1))
return FALSE;
if(point == 0) startpt = pt;
PATH_AddEntry(pPath, &pt, (point == 0) ? PT_MOVETO : PT_LINETO);
}
/* win98 adds an extra line to close the figure for some reason */
PATH_AddEntry(pPath, &startpt, PT_LINETO | PT_CLOSEFIGURE);
}
return TRUE;
}
--
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=25214
Summary: MS Office PowerPoint 2007 freezes when right-click on
top bar
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joni(a)pepinonline.com
Ubuntu 10.10
Right-clicking the top bar causes the program to freeze for an indeterminate
amount of time.
Normally, right-clicking on the top bar will display a selection box for
minimize, maximize, etc.
Running with riched20.dll override, windows version XP.
--
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=22838
Summary: Corel Draw 11 not loading
Product: Wine
Version: 1.2-rc1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fernandocarvalho1987(a)hotmail.com
Corel Draw 11 doesn't load properly.
I tested it on wine-1.2-rc1
--
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=14075
Summary: Beyond Divinity: screen corruption
Product: Wine
Version: 1.0-rc2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iborco(a)gmail.com
Background is not drawn correctly in BeyondDivinity.
--
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=20783
Summary: DotNet Issues
Product: Wine
Version: unspecified
Platform: PC
URL: http://www.sharekhan.com/tradetiger/setupnew.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: toffan(a)live.in
Hello,
I want to run a DotNet 2.0 application in ubuntu 9.10. I have installed WINE
1.2 and WINETRICKS. But still it did not works. After installation this apps,
it does not show the login window correctly. You can download the DotNet 2.0
application at:
http://www.sharekhan.com/tradetiger/setupnew.html .
Please do this needful.
Thanks in advance!
Toffan
toffan(a)live.in
+91-9040898994
--
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=22187
Summary: Alice 2.2 fails with "can't create Java VM"
Product: Wine
Version: 1.1.41
Platform: x86
URL: http://alicedownloads.org/currentRelease/Alice2.2.zip
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=27071)
--> (http://bugs.winehq.org/attachment.cgi?id=27071)
Alice 2.2 +relay,+virtual log (lzma compressed)
With wine-1.1.41-211-g719d904, launching Alice.exe yields a dialog box stating
"can't create Java VM" and the following output:
Error occurred during initialization of VM
Could not reserve enough space for object heap
Since Alice launched in wine-1.0, a regression test was performed, which
indicated:
09712593c8496be5e952b7316099f9eed5043203 is the first bad commit
commit 09712593c8496be5e952b7316099f9eed5043203
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Jun 25 14:18:53 2009 +0200
ntdll: Release some address space after the process initialization is done.
:040000 040000 25715d0c052bc6bbc0262c742ad285d17a78f236
aa973aa3e5286174dcbffd782691d09bd9109e5d M dlls
While bug 21630 reports the same commit, I suspect the problem in that bug is
different. I have attached a +relay,+virtual log as was requested in bug 21630.
--
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=13156
Summary: ETO_OPAQUE and clear style are not transparent on a
bitmap
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: heiko_tietze(a)web.de
I paint some text on a bitmap using
Canvas.TextFlags:=ETO_OPAQUE;
Canvas.Brush.Style:=bsClear;
TextOut(...
resulting in a black background around the intended transparent text.
--
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=21577
Summary: Using WINE for MYOB accounting package & problems with
altering template invoices to include graphics
Product: Wine
Version: 1.0.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)trademarkservices.com.au
WINE wouldn't allow to adjust templates to create invoices with our
logo/graphics included - can incorporate text.
So loaded with VISTA and changed template to include logo/graphics, then
switched back to Linux (ubuntu) but to my surprise, PDFing the invoice through
WINE just "leaves out" the image as if its not there at all....
Please help as we don't want to have to load VISTA each time to print off
proper invoices...
--
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=17201
Summary: No add-ins loadable in Office 2003 PowerPoint
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Frank(a)eyermann-online.de
Created an attachment (id=19105)
--> (http://bugs.winehq.org/attachment.cgi?id=19105)
Powerpoint plugin
In the Add-Ins Dialog in PowerPoint (Tools->Add-Ins) the List box is only if
view pixels high. Adding of Add-Ins is not possible:
When clicking on Add new a file dialog appears
PowerPoint add-in (.ppa file) is chosen
OK
File dialog closes, but nothing happens. Buttons of the dialog box are not
activited, no entry in the list, no entry is added in the respective registry
hive.
OS is OpenSuse 10.3
Wine-Version 1.1.13
I did a typical installation of Office 2003
Add-in I try to load is attached
Hope somebody can help me,
best regards,
Frank
--
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=22269
Summary: Cry of the Infected demo fails with "runtime error
7018"
Product: Wine
Version: 1.1.42
Platform: x86
URL: http://www.gamershell.com/download_24622.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=27201)
--> (http://bugs.winehq.org/attachment.cgi?id=27201)
Cry of the Infected +d3dxof trace
After installing the Cry of the Infected demo and d3dx9 from winetricks to work
around a startup failure, starting a new game leads to some loading, and then a
error message box stating:
"Runtime Error 7018 - Could not load 3D object at line 16058"
I suspect the problem is related to d3dxof, which seems to be confirmed by
installing native d3dxof from winetricks, which makes the game progress further
until erroring with a slightly different error message.
--
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.