Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/script/bridge/qscriptobject_p.h

    r651 r846  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 201 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation ([email protected])
     
    6868                     JSC::JSValue, JSC::PutPropertySlot&);
    6969    virtual bool deleteProperty(JSC::ExecState*,
    70                                 const JSC::Identifier& propertyName,
    71                                 bool checkDontDelete = true);
    72     virtual bool getPropertyAttributes(JSC::ExecState*, const JSC::Identifier&,
    73                                        unsigned&) const;
     70                                const JSC::Identifier& propertyName);
    7471    virtual void getOwnPropertyNames(JSC::ExecState*, JSC::PropertyNameArray&,
    75                                      bool includeNonEnumerable = false);
     72                                     );
    7673    virtual void markChildren(JSC::MarkStack& markStack);
    7774    virtual JSC::CallType getCallData(JSC::CallData&);
     
    8582    static WTF::PassRefPtr<JSC::Structure> createStructure(JSC::JSValue prototype)
    8683    {
    87         return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType, JSC::ImplementsHasInstance | JSC::OverridesHasInstance));
     84        return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType, ));
    8885    }
    8986
     
    9592
    9693protected:
     94
     95
    9796    Data *d;
    9897};
     
    129128                     JSC::JSValue, JSC::PutPropertySlot&);
    130129    virtual bool deleteProperty(QScriptObject*, JSC::ExecState*,
    131                                 const JSC::Identifier& propertyName,
    132                                 bool checkDontDelete = true);
    133     virtual bool getPropertyAttributes(const QScriptObject*, JSC::ExecState*,
    134                                        const JSC::Identifier&, unsigned&) const;
     130                                const JSC::Identifier& propertyName);
    135131    virtual void getOwnPropertyNames(QScriptObject*, JSC::ExecState*, JSC::PropertyNameArray&,
    136                                      bool includeNonEnumerable = false);
     132                                     );
    137133    virtual void markChildren(QScriptObject*, JSC::MarkStack& markStack);
    138134    virtual JSC::CallType getCallData(QScriptObject*, JSC::CallData&);
Note: See TracChangeset for help on using the changeset viewer.