[webkit-changes] cvs commit: SVGSupport/ksvg2/svg SVGFEBlendElementImpl.h SVGFEFloodElementImpl.h

Eric eseidel at opensource.apple.com
Sun Sep 4 02:10:55 PDT 2005


eseidel     05/09/04 02:10:54

  Modified:    .        ChangeLog
               ksvg2/svg SVGFEBlendElementImpl.h SVGFEFloodElementImpl.h
  Log:
  Bug #: none
  Submitted by: eseidel
  Reviewed by: none
          No review needed, only affects SVG, only replacing line endings.
  
          * ksvg2/svg/SVGFEBlendElementImpl.h: CRLF -> LF
          * ksvg2/svg/SVGFEFloodElementImpl.h: CRLF -> LF
          Fixed two files with windows line endings.
  
  Revision  Changes    Path
  1.86      +8 -0      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.85
  retrieving revision 1.86
  diff -u -r1.85 -r1.86
  --- ChangeLog	4 Sep 2005 08:23:39 -0000	1.85
  +++ ChangeLog	4 Sep 2005 09:10:54 -0000	1.86
  @@ -1,3 +1,11 @@
  +2005-09-04  Eric Seidel  <eseidel at apple.com>
  +
  +        No review needed, only affects SVG, only replacing line endings.
  +
  +        * ksvg2/svg/SVGFEBlendElementImpl.h: CRLF -> LF
  +        * ksvg2/svg/SVGFEFloodElementImpl.h: CRLF -> LF
  +        Fixed two files with windows line endings.
  +
   2005-09-04  Darin Adler  <darin at apple.com>
   
           - fixed the build
  
  
  
  1.5       +65 -65    SVGSupport/ksvg2/svg/SVGFEBlendElementImpl.h
  
  Index: SVGFEBlendElementImpl.h
  ===================================================================
  RCS file: /cvs/root/SVGSupport/ksvg2/svg/SVGFEBlendElementImpl.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SVGFEBlendElementImpl.h	1 Sep 2005 07:35:38 -0000	1.4
  +++ SVGFEBlendElementImpl.h	4 Sep 2005 09:10:54 -0000	1.5
  @@ -1,65 +1,65 @@
  -/*
  -    Copyright (C) 2004, 2005 Nikolas Zimmermann <wildfox at kde.org>
  -                  2004, 2005 Rob Buis <buis at kde.org>
  -
  -    This file is part of the KDE project
  -
  -    This library is free software; you can redistribute it and/or
  -    modify it under the terms of the GNU Library General Public
  -    License as published by the Free Software Foundation; either
  -    version 2 of the License, or (at your option) any later version.
  -
  -    This library is distributed in the hope that it will be useful,
  -    but WITHOUT ANY WARRANTY; without even the implied warranty of
  -    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  -    Library General Public License for more details.
  -
  -    You should have received a copy of the GNU Library General Public License
  -    along with this library; see the file COPYING.LIB.  If not, write to
  -    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  -    Boston, MA 02111-1307, USA.
  -*/
  -
  -#ifndef KSVG_SVGFEBlendElementImpl_H
  -#define KSVG_SVGFEBlendElementImpl_H
  -
  -#include "SVGFilterPrimitiveStandardAttributesImpl.h"
  -
  -class KCanvasFEBlend;
  -class KCanvasFilterEffect;
  -
  -namespace KSVG
  -{
  -    class SVGAnimatedStringImpl;
  -    class SVGAnimatedEnumerationImpl;
  -
  -    class SVGFEBlendElementImpl : public SVGFilterPrimitiveStandardAttributesImpl
  -    {
  -    public:
  -        SVGFEBlendElementImpl(KDOM::DocumentPtr *doc, KDOM::NodeImpl::Id id, KDOM::DOMStringImpl *prefix);
  -        virtual ~SVGFEBlendElementImpl();
  -
  -        // 'SVGFEBlendElement' functions
  -        SVGAnimatedStringImpl *in1() const;
  -        SVGAnimatedStringImpl *in2() const;
  -        SVGAnimatedEnumerationImpl *mode() const;
  -
  -        // Derived from: 'ElementImpl'
  -        virtual void parseAttribute(KDOM::AttributeImpl *attr);
  -
  -        virtual KCanvasItem *createCanvasItem(KCanvas *canvas, KRenderingStyle *style) const;
  -
  -        virtual bool implementsCanvasItem() const { return true; }
  -
  -        virtual KCanvasFilterEffect *filterEffect() const;
  -
  -    private:
  -        mutable SVGAnimatedStringImpl *m_in1;
  -        mutable SVGAnimatedStringImpl *m_in2;
  -        mutable SVGAnimatedEnumerationImpl *m_mode;
  -        mutable KCanvasFEBlend *m_filterEffect;
  -    };
  -};
  -
  -#endif
  -
  +/*
  +    Copyright (C) 2004, 2005 Nikolas Zimmermann <wildfox at kde.org>
  +                  2004, 2005 Rob Buis <buis at kde.org>
  +
  +    This file is part of the KDE project
  +
  +    This library is free software; you can redistribute it and/or
  +    modify it under the terms of the GNU Library General Public
  +    License as published by the Free Software Foundation; either
  +    version 2 of the License, or (at your option) any later version.
  +
  +    This library is distributed in the hope that it will be useful,
  +    but WITHOUT ANY WARRANTY; without even the implied warranty of
  +    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  +    Library General Public License for more details.
  +
  +    You should have received a copy of the GNU Library General Public License
  +    along with this library; see the file COPYING.LIB.  If not, write to
  +    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  +    Boston, MA 02111-1307, USA.
  +*/
  +
  +#ifndef KSVG_SVGFEBlendElementImpl_H
  +#define KSVG_SVGFEBlendElementImpl_H
  +
  +#include "SVGFilterPrimitiveStandardAttributesImpl.h"
  +
  +class KCanvasFEBlend;
  +class KCanvasFilterEffect;
  +
  +namespace KSVG
  +{
  +    class SVGAnimatedStringImpl;
  +    class SVGAnimatedEnumerationImpl;
  +
  +    class SVGFEBlendElementImpl : public SVGFilterPrimitiveStandardAttributesImpl
  +    {
  +    public:
  +        SVGFEBlendElementImpl(KDOM::DocumentPtr *doc, KDOM::NodeImpl::Id id, KDOM::DOMStringImpl *prefix);
  +        virtual ~SVGFEBlendElementImpl();
  +
  +        // 'SVGFEBlendElement' functions
  +        SVGAnimatedStringImpl *in1() const;
  +        SVGAnimatedStringImpl *in2() const;
  +        SVGAnimatedEnumerationImpl *mode() const;
  +
  +        // Derived from: 'ElementImpl'
  +        virtual void parseAttribute(KDOM::AttributeImpl *attr);
  +
  +        virtual KCanvasItem *createCanvasItem(KCanvas *canvas, KRenderingStyle *style) const;
  +
  +        virtual bool implementsCanvasItem() const { return true; }
  +
  +        virtual KCanvasFilterEffect *filterEffect() const;
  +
  +    private:
  +        mutable SVGAnimatedStringImpl *m_in1;
  +        mutable SVGAnimatedStringImpl *m_in2;
  +        mutable SVGAnimatedEnumerationImpl *m_mode;
  +        mutable KCanvasFEBlend *m_filterEffect;
  +    };
  +};
  +
  +#endif
  +
  
  
  
  1.5       +59 -59    SVGSupport/ksvg2/svg/SVGFEFloodElementImpl.h
  
  Index: SVGFEFloodElementImpl.h
  ===================================================================
  RCS file: /cvs/root/SVGSupport/ksvg2/svg/SVGFEFloodElementImpl.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SVGFEFloodElementImpl.h	1 Sep 2005 07:35:39 -0000	1.4
  +++ SVGFEFloodElementImpl.h	4 Sep 2005 09:10:54 -0000	1.5
  @@ -1,59 +1,59 @@
  -/*
  -    Copyright (C) 2004, 2005 Nikolas Zimmermann <wildfox at kde.org>
  -                  2004, 2005 Rob Buis <buis at kde.org>
  -
  -    This file is part of the KDE project
  -
  -    This library is free software; you can redistribute it and/or
  -    modify it under the terms of the GNU Library General Public
  -    License as published by the Free Software Foundation; either
  -    version 2 of the License, or (at your option) any later version.
  -
  -    This library is distributed in the hope that it will be useful,
  -    but WITHOUT ANY WARRANTY; without even the implied warranty of
  -    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  -    Library General Public License for more details.
  -
  -    You should have received a copy of the GNU Library General Public License
  -    along with this library; see the file COPYING.LIB.  If not, write to
  -    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  -    Boston, MA 02111-1307, USA.
  -*/
  -
  -#ifndef KSVG_SVGFEFloodElementImpl_H
  -#define KSVG_SVGFEFloodElementImpl_H
  -
  -#include "SVGFilterPrimitiveStandardAttributesImpl.h"
  -
  -class KCanvasFEFlood;
  -class KCanvasFilterEffect;
  -
  -namespace KSVG
  -{
  -    class SVGAnimatedStringImpl;
  -
  -    class SVGFEFloodElementImpl : public SVGFilterPrimitiveStandardAttributesImpl
  -    {
  -    public:
  -        SVGFEFloodElementImpl(KDOM::DocumentPtr *doc, KDOM::NodeImpl::Id id, KDOM::DOMStringImpl *prefix);
  -        virtual ~SVGFEFloodElementImpl();
  -
  -        // 'SVGFEFloodElement' functions
  -        SVGAnimatedStringImpl *in1() const;
  -
  -        // Derived from: 'ElementImpl'
  -        virtual void parseAttribute(KDOM::AttributeImpl *attr);
  -
  -        virtual KCanvasItem *createCanvasItem(KCanvas *canvas, KRenderingStyle *style) const;
  -
  -        virtual bool implementsCanvasItem() const { return true; }
  -
  -        virtual KCanvasFilterEffect *filterEffect() const;
  -
  -    private:
  -        mutable SVGAnimatedStringImpl *m_in1;
  -        mutable KCanvasFEFlood *m_filterEffect;
  -    };
  -};
  -
  -#endif
  +/*
  +    Copyright (C) 2004, 2005 Nikolas Zimmermann <wildfox at kde.org>
  +                  2004, 2005 Rob Buis <buis at kde.org>
  +
  +    This file is part of the KDE project
  +
  +    This library is free software; you can redistribute it and/or
  +    modify it under the terms of the GNU Library General Public
  +    License as published by the Free Software Foundation; either
  +    version 2 of the License, or (at your option) any later version.
  +
  +    This library is distributed in the hope that it will be useful,
  +    but WITHOUT ANY WARRANTY; without even the implied warranty of
  +    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  +    Library General Public License for more details.
  +
  +    You should have received a copy of the GNU Library General Public License
  +    along with this library; see the file COPYING.LIB.  If not, write to
  +    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  +    Boston, MA 02111-1307, USA.
  +*/
  +
  +#ifndef KSVG_SVGFEFloodElementImpl_H
  +#define KSVG_SVGFEFloodElementImpl_H
  +
  +#include "SVGFilterPrimitiveStandardAttributesImpl.h"
  +
  +class KCanvasFEFlood;
  +class KCanvasFilterEffect;
  +
  +namespace KSVG
  +{
  +    class SVGAnimatedStringImpl;
  +
  +    class SVGFEFloodElementImpl : public SVGFilterPrimitiveStandardAttributesImpl
  +    {
  +    public:
  +        SVGFEFloodElementImpl(KDOM::DocumentPtr *doc, KDOM::NodeImpl::Id id, KDOM::DOMStringImpl *prefix);
  +        virtual ~SVGFEFloodElementImpl();
  +
  +        // 'SVGFEFloodElement' functions
  +        SVGAnimatedStringImpl *in1() const;
  +
  +        // Derived from: 'ElementImpl'
  +        virtual void parseAttribute(KDOM::AttributeImpl *attr);
  +
  +        virtual KCanvasItem *createCanvasItem(KCanvas *canvas, KRenderingStyle *style) const;
  +
  +        virtual bool implementsCanvasItem() const { return true; }
  +
  +        virtual KCanvasFilterEffect *filterEffect() const;
  +
  +    private:
  +        mutable SVGAnimatedStringImpl *m_in1;
  +        mutable KCanvasFEFlood *m_filterEffect;
  +    };
  +};
  +
  +#endif
  
  
  



More information about the webkit-changes mailing list