Changeset 62119 in webkit


Ignore:
Timestamp:
Jun 29, 2010 7:32:36 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-06-29 Caio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Fix QtScript build after QScriptValuePrivate ctor changes
https://bugs.webkit.org/show_bug.cgi?id=41307

  • qt/api/qscriptvalue_p.h: (QScriptValuePrivate::prototype):
  • qt/benchmarks/qscriptengine/qscriptengine.pro:
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r62078 r62119  
     12010-06-29  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Fix QtScript build after QScriptValuePrivate ctor changes
     6        https://bugs.webkit.org/show_bug.cgi?id=41307
     7
     8        * qt/api/qscriptvalue_p.h:
     9        (QScriptValuePrivate::prototype):
     10        * qt/benchmarks/qscriptengine/qscriptengine.pro:
     11
    1122010-06-28  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
    213
  • trunk/JavaScriptCore/qt/api/qscriptvalue_p.h

    r62007 r62119  
    625625        // The prototype could be either a null or a JSObject, so it is safe to cast the prototype
    626626        // to the JSObjectRef here.
    627         return new QScriptValuePrivate(engine(), prototype, const_cast<JSObjectRef>(prototype));
     627        return new QScriptValuePrivate(engine(), const_cast<JSObjectRef>(prototype));
    628628    }
    629629    return new QScriptValuePrivate;
  • trunk/JavaScriptCore/qt/benchmarks/qscriptengine/qscriptengine.pro

    r61882 r62119  
    66QT += testlib
    77
     8include(../benchmarks.pri)
     9
    810symbian* {
    911    TARGET.EPOCHEAPSIZE  = 0x20000 0x2000000 // Min 128kB, Max 32MB
Note: See TracChangeset for help on using the changeset viewer.