[webkit-changes] cvs commit: SVGSupport/kdom/ecma Ecma.cpp

Eric eseidel at opensource.apple.com
Tue Sep 20 02:40:07 PDT 2005


eseidel     05/09/20 02:40:06

  Modified:    .        ChangeLog
               kdom/ecma Ecma.cpp
  Log:
  Bug #: 5058
  Submitted by: Kimmo Kinnunen <kimmo.t.kinnunen at nokia.com>
  Reviewed by: eseidel
          * kdom/ecma/Ecma.cpp: ProtectedValue -> ProtectedPtr<ValueImp>
          build fix after mjs' recent ProtectedValue removal.
          http://bugzilla.opendarwin.org/show_bug.cgi?id=5058
  
  Revision  Changes    Path
  1.138     +9 -0      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.137
  retrieving revision 1.138
  diff -u -r1.137 -r1.138
  --- ChangeLog	20 Sep 2005 08:31:46 -0000	1.137
  +++ ChangeLog	20 Sep 2005 09:40:05 -0000	1.138
  @@ -1,4 +1,13 @@
   2005-09-20  Eric Seidel  <eseidel at apple.com>
  +        Fix by Kimmo Kinnunen <kimmo.t.kinnunen at nokia.com>
  +
  +        Reviewed by eseidel.
  +
  +        * kdom/ecma/Ecma.cpp: ProtectedValue -> ProtectedPtr<ValueImp>
  +        build fix after mjs' recent ProtectedValue removal.
  +        http://bugzilla.opendarwin.org/show_bug.cgi?id=5058
  +
  +2005-09-20  Eric Seidel  <eseidel at apple.com>
   
           Reviewed by mjs.
   
  
  
  
  1.8       +1 -1      SVGSupport/kdom/ecma/Ecma.cpp
  
  Index: Ecma.cpp
  ===================================================================
  RCS file: /cvs/root/SVGSupport/kdom/ecma/Ecma.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Ecma.cpp	2 Sep 2005 11:15:44 -0000	1.7
  +++ Ecma.cpp	20 Sep 2005 09:40:06 -0000	1.8
  @@ -265,7 +265,7 @@
               return current;
       }
       
  -    static KJS::ProtectedValue eventString = KJS::String("event");
  +    static KJS::ProtectedPtr<KJS::ValueImp> eventString = KJS::String("event");
   
       KJS::ObjectImp *constr = d->interpreter->builtinFunction();
       KJS::ExecState *exec = d->interpreter->globalExec();
  
  
  



More information about the webkit-changes mailing list