Armin,

On Jan 17, 2012, at 6:56 PM, Armin Le Grand wrote:

> I have reintegrated the finished feature from the branch to trunk. Kudos go 
> to Regina for the basic implementation and for offering it here.

can you please have a look at the code? This NOT-TO-BE-INTEGRATED change shows 
the WaE issue in vcl:

--- vcl.orig/aqua/source/gdi/salgdi.cxx 2012-01-17 19:51:19.000000000 +0100
+++ vcl/aqua/source/gdi/salgdi.cxx      2012-01-17 19:52:07.000000000 +0100
@@ -987,6 +987,7 @@
        basegfx::B2DLineJoin eLineJoin,
     com::sun::star::drawing::LineCap eLineCap)
 {
+  (void)eLineCap; // Unused parameter...
        // short circuit if there is nothing to do
        const int nPointCount = rPolyLine.count();
        if( nPointCount <= 0 )

And this one should be integrated:

--- svx.orig/source/xoutdev/xattr2.cxx  2012-01-17 21:21:03.000000000 +0100
+++ svx/source/xoutdev/xattr2.cxx       2012-01-17 21:28:40.000000000 +0100
@@ -451,7 +451,7 @@
         || com::sun::star::drawing::LineCap_ROUND == eRetval
         || com::sun::star::drawing::LineCap_SQUARE == eRetval, "Unknown enum 
value in XATTR_LINECAP (!)");
 
-    return (com::sun::star::drawing::LineCap)SfxEnumItem::GetValue(); 
+    return eRetval; 
 }
 
 //------------------------------

-- 
Pavel Janík



Reply via email to