Changeset 52951 in webkit


Ignore:
Timestamp:
Jan 7, 2010 2:36:05 PM (14 years ago)
Author:
ggaren@apple.com
Message:

Better build fix: use 'this->structure()', since 'structure' is a
PassRefPtr, and therefore null.

  • bindings/js/JSDOMWindowBase.cpp:

(WebCore::JSDOMWindowBase::JSDOMWindowBase):

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r52950 r52951  
     12010-01-07  Geoffrey Garen  <ggaren@apple.com>
     2
     3        Better build fix: use 'this->structure()', since 'structure' is a
     4        PassRefPtr, and therefore null.
     5
     6        * bindings/js/JSDOMWindowBase.cpp:
     7        (WebCore::JSDOMWindowBase::JSDOMWindowBase):
     8
    192010-01-07  Geoffrey Garen  <ggaren@apple.com>
    210
  • trunk/WebCore/bindings/js/JSDOMWindowBase.cpp

    r52950 r52951  
    5454    : JSDOMGlobalObject(structure, new JSDOMWindowBaseData(window, shell), shell)
    5555{
    56     structure->disableSpecificFunctionTracking();
     56    this->structure()->disableSpecificFunctionTracking();
    5757
    5858    GlobalPropertyInfo staticGlobals[] = {
Note: See TracChangeset for help on using the changeset viewer.