Author: arist
Date: Wed Nov 14 22:55:25 2012
New Revision: 1409510

URL: http://svn.apache.org/viewvc?rev=1409510&view=rev
Log:
gnumake4_021_8c299b2d4484.patch
# HG changeset patch
# User mba
# Date 1298910882 -3600
# Node ID 8c299b2d44841ee59acb214f81b18960b1bb5623
# Parent  8afba918c3444d8a53cf191d7f1434878b248a3f
CWS gnumake4: some fixes for basegfx+canvas


Modified:
    incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/point/b2dpoint.hxx
    incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/range/b2drange.hxx
    incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/tuple/b2dtuple.hxx
    incubator/ooo/branches/gbuild/main/cppcanvas/Library_cppcanvas.mk
    incubator/ooo/branches/gbuild/main/postprocess/packcomponents/makefile.mk

Modified: 
incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/point/b2dpoint.hxx
URL: 
http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/point/b2dpoint.hxx?rev=1409510&r1=1409509&r2=1409510&view=diff
==============================================================================
--- incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/point/b2dpoint.hxx 
(original)
+++ incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/point/b2dpoint.hxx 
Wed Nov 14 22:55:25 2012
@@ -43,7 +43,7 @@ namespace basegfx
 
                @see B2DTuple
        */
-       class BASEGFX_DLLPUBLIC B2DPoint : public ::basegfx::B2DTuple
+       class B2DPoint : public ::basegfx::B2DTuple
        {
        public:                                 
                /**     Create a 2D Point
@@ -117,14 +117,14 @@ namespace basegfx
                /** assignment operator to allow assigning the results
                        of B2DTuple calculations
                */
-               B2DPoint& operator=( const ::basegfx::B2DTuple& rPoint );
+               BASEGFX_DLLPUBLIC B2DPoint& operator=( const 
::basegfx::B2DTuple& rPoint );
 
                /** Transform point by given transformation matrix.
 
                The translational components of the matrix are, in
                contrast to B2DVector, applied.
                */
-               B2DPoint& operator*=( const ::basegfx::B2DHomMatrix& rMat );
+               BASEGFX_DLLPUBLIC B2DPoint& operator*=( const 
::basegfx::B2DHomMatrix& rMat );
 
                static const B2DPoint& getEmptyPoint()
                {

Modified: 
incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/range/b2drange.hxx
URL: 
http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/range/b2drange.hxx?rev=1409510&r1=1409509&r2=1409510&view=diff
==============================================================================
--- incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/range/b2drange.hxx 
(original)
+++ incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/range/b2drange.hxx 
Wed Nov 14 22:55:25 2012
@@ -38,7 +38,7 @@ namespace basegfx
        class B2IRange;
        class B2DHomMatrix;
 
-       class BASEGFX_DLLPUBLIC B2DRange
+       class B2DRange
        {
        public:         
         typedef double                         ValueType;
@@ -79,7 +79,7 @@ namespace basegfx
                {
                }
 
-               explicit B2DRange(const B2IRange& rRange);
+               BASEGFX_DLLPUBLIC explicit B2DRange(const B2IRange& rRange);
 
                bool isEmpty() const 
                {
@@ -248,7 +248,7 @@ namespace basegfx
                        maRangeY.grow(fValue); 
                }
 
-               void transform(const B2DHomMatrix& rMatrix);
+               BASEGFX_DLLPUBLIC void transform(const B2DHomMatrix& rMatrix);
 
        private:
         typedef ::basegfx::BasicRange< ValueType, TraitsType > MyBasicRange;

Modified: 
incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/tuple/b2dtuple.hxx
URL: 
http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/tuple/b2dtuple.hxx?rev=1409510&r1=1409509&r2=1409510&view=diff
==============================================================================
--- incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/tuple/b2dtuple.hxx 
(original)
+++ incubator/ooo/branches/gbuild/main/basegfx/inc/basegfx/tuple/b2dtuple.hxx 
Wed Nov 14 22:55:25 2012
@@ -43,7 +43,7 @@ namespace basegfx
                @derive Use this class to implement Points or Vectors
                which are based on two double values
        */
-       class BASEGFX_DLLPUBLIC B2DTuple
+       class B2DTuple
        {
        protected:
                double                                                          
                mfX;
@@ -89,7 +89,7 @@ namespace basegfx
                        @param rTup
                        The 2D Tuple which will be copied.
                */
-               explicit B2DTuple(const B2ITuple& rTup);
+               BASEGFX_DLLPUBLIC explicit B2DTuple(const B2ITuple& rTup);
 
                ~B2DTuple() 
                {}
@@ -235,9 +235,9 @@ namespace basegfx
                        return *this; 
                }
 
-               void correctValues(const double fCompareValue = 0.0);
+               BASEGFX_DLLPUBLIC void correctValues(const double fCompareValue 
= 0.0);
 
-               static const B2DTuple& getEmptyTuple();
+               BASEGFX_DLLPUBLIC static const B2DTuple& getEmptyTuple();
        };
 
        // external operators

Modified: incubator/ooo/branches/gbuild/main/cppcanvas/Library_cppcanvas.mk
URL: 
http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/cppcanvas/Library_cppcanvas.mk?rev=1409510&r1=1409509&r2=1409510&view=diff
==============================================================================
--- incubator/ooo/branches/gbuild/main/cppcanvas/Library_cppcanvas.mk (original)
+++ incubator/ooo/branches/gbuild/main/cppcanvas/Library_cppcanvas.mk Wed Nov 
14 22:55:25 2012
@@ -29,7 +29,7 @@ $(eval $(call gb_Library_Library,cppcanv
 
 $(eval $(call gb_Library_add_package_headers,cppcanvas,cppcanvas_inc))
 
-$(eval $(call 
gb_Library_add_precompiled_header,cppcanvas,$(SRCDIR)/cppcanvas/inc/precompiled_cppcanvas))
+$(eval $(call 
gb_Library_add_precompiled_header,cppcanvas,$(SRCDIR)/cppcanvas/inc/pch/precompiled_cppcanvas))
 
 $(eval $(call gb_Library_add_api,cppcanvas,\
        udkapi \

Modified: 
incubator/ooo/branches/gbuild/main/postprocess/packcomponents/makefile.mk
URL: 
http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/postprocess/packcomponents/makefile.mk?rev=1409510&r1=1409509&r2=1409510&view=diff
==============================================================================
--- incubator/ooo/branches/gbuild/main/postprocess/packcomponents/makefile.mk 
(original)
+++ incubator/ooo/branches/gbuild/main/postprocess/packcomponents/makefile.mk 
Wed Nov 14 22:55:25 2012
@@ -332,7 +332,7 @@ my_components += \
 my_components += \
     avmediawin \
     component/canvas/source/directx/directx9canvas \
-    gdipluscanvas
+    component/canvas/source/directx/gdipluscanvas
 .END
 
 .IF "$(OS)" == "WNT" && "$(ENABLE_DIRECTX)" != "" && "$(USE_DIRECTX5)" != ""


Reply via email to