[webkit-changes] cvs commit: SVGSupport/kcanvas KCanvasFilters.h

Eric eseidel at opensource.apple.com
Mon Nov 28 15:57:36 PST 2005


eseidel     05/11/28 15:57:36

  Modified:    .        ChangeLog
               kcanvas  KCanvasFilters.h
  Log:
  Bug #: none
  Submitted by: eseidel
  Reviewed by: none, WebCore+SVG build fix only.
          Corrected typo in last commit causing WebKit+SVG build failure.
  
          * kcanvas/KCanvasFilters.h:
          (QSizeF::QSizeF): fixed typo.
  
  Revision  Changes    Path
  1.413     +9 -0      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.412
  retrieving revision 1.413
  diff -u -r1.412 -r1.413
  --- ChangeLog	28 Nov 2005 23:33:46 -0000	1.412
  +++ ChangeLog	28 Nov 2005 23:57:33 -0000	1.413
  @@ -1,3 +1,12 @@
  +2005-11-28  Eric Seidel  <eseidel at apple.com>
  +
  +        No review, build fix only.
  +
  +        Corrected typo in last commit causing build failure.
  +
  +        * kcanvas/KCanvasFilters.h:
  +        (QSizeF::QSizeF): fixed typo.
  +
   2005-11-28  Oliver Hunt  <ojh16 at student.canterbury.ac.nz>
   
           Reviewed by eseidel.  Committed by eseidel.
  
  
  
  1.13      +1 -1      SVGSupport/kcanvas/KCanvasFilters.h
  
  Index: KCanvasFilters.h
  ===================================================================
  RCS file: /cvs/root/SVGSupport/kcanvas/KCanvasFilters.h,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- KCanvasFilters.h	28 Nov 2005 23:33:58 -0000	1.12
  +++ KCanvasFilters.h	28 Nov 2005 23:57:35 -0000	1.13
  @@ -95,7 +95,7 @@
   
   class QSizeF {
   public:
  -    QPointF(float width, float height) : m_width(x), m_height(y) { }
  +    QSizeF(float w, float h) : m_width(w), m_height(h) { }
   
       float width() const { return m_width; }
       void setWidth(float width) { m_width = width; }
  
  
  



More information about the webkit-changes mailing list