[Bug 45997] .NET 4.0 app crashes with System.NotImplementedException at system.drawing.pen.ScaleTransform

wine-bugs at winehq.org wine-bugs at winehq.org
Mon Oct 15 14:44:05 CDT 2018


https://bugs.winehq.org/show_bug.cgi?id=45997

Anastasius Focht <focht at gmx.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
            Summary|Attempting to run dotnet    |.NET 4.0 app crashes with
                   |4.0 app using the dotnet40  |System.NotImplementedExcept
                   |winetrick, receiving Not    |ion at
                   |implemented for             |system.drawing.pen.ScaleTra
                   |system.drawing.pen.ScaleTra |nsform
                   |nsform                      |
           Keywords|integration                 |
                 CC|                            |focht at gmx.net
     Ever confirmed|0                           |1
           Severity|blocker                     |normal

--- Comment #2 from Anastasius Focht <focht at gmx.net> ---
Hello John,

is the .NET app publicly available for download? If yes, please provide a link.
Also please use a more recent Wine version when reporting bugs, even if the
function is still not implemented. You would need to upgrade anyway after Wine
gets fixed.

https://wiki.winehq.org/Bugs

https://wiki.winehq.org/MacOS

Wine source:

https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/gdiplus/pen.c#l471

--- snip ---
 471 GpStatus WINGDIPAPI GdipScalePenTransform(GpPen *pen, REAL sx, REAL sy,
GpMatrixOrder order)
 472 {
 473     static int calls;
 474 
 475     TRACE("(%p,%0.2f,%0.2f,%u)\n", pen, sx, sy, order);
 476 
 477     if(!pen)
 478         return InvalidParameter;
 479 
 480     if(!(calls++))
 481         FIXME("(%p, %.2f, %.2f, %d) stub\n", pen, sx, sy, order);
 482 
 483     return NotImplemented;
 484 }
--- snip ---

$ wine --version
wine-3.18

Regards

-- 
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.



More information about the wine-bugs mailing list