[webkit-changes] cvs commit: WebCore/khtml/ecma kjs_binding.h

Adele adele at opensource.apple.com
Tue Aug 2 15:23:22 PDT 2005


adele       05/08/02 15:23:21

  Modified:    .        Tag: Safari-2-0-branch ChangeLog
               khtml/ecma Tag: Safari-2-0-branch kjs_binding.h
  Log:
          small change to fix build bustage.
  
          * khtml/ecma/kjs_binding.h: use '.' instead of '->'.  On the branch,
            self returns an Object instead of an ObjectImp *
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.4104.2.84 +7 -0      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.4104.2.83
  retrieving revision 1.4104.2.84
  diff -u -r1.4104.2.83 -r1.4104.2.84
  --- ChangeLog	2 Aug 2005 21:38:53 -0000	1.4104.2.83
  +++ ChangeLog	2 Aug 2005 22:23:14 -0000	1.4104.2.84
  @@ -1,5 +1,12 @@
   2005-08-02  Adele Peterson  <adele at apple.com>
   
  +        small change to fix build bustage.
  +
  +        * khtml/ecma/kjs_binding.h: use '.' instead of '->'.  On the branch, 
  +          self returns an Object instead of an ObjectImp *
  +
  +2005-08-02  Adele Peterson  <adele at apple.com>
  +
           Merged fix from TOT to Safari-2-0-branch
   
       2005-07-25  Vicki Murley  <vicki at apple.com>
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.22.8.4  +2 -2      WebCore/khtml/ecma/kjs_binding.h
  
  Index: kjs_binding.h
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/ecma/kjs_binding.h,v
  retrieving revision 1.22.8.3
  retrieving revision 1.22.8.4
  diff -u -r1.22.8.3 -r1.22.8.4
  --- kjs_binding.h	2 Aug 2005 21:26:14 -0000	1.22.8.3
  +++ kjs_binding.h	2 Aug 2005 22:23:21 -0000	1.22.8.4
  @@ -330,8 +330,8 @@
       { \
         if (ObjectImp::hasOwnProperty(exec, propertyName)) \
           return true; \
  -      return ParentProto::self(exec)->hasOwnProperty(exec, propertyName); \
  -    }
  +      return ParentProto::self(exec).hasOwnProperty(exec, propertyName); \
  +    } 
   
   #define IMPLEMENT_PROTOFUNC(ClassFunc) \
     namespace KJS { \
  
  
  



More information about the webkit-changes mailing list