diff options
author | Harald Fernengel <harald@trolltech.com> | 2009-08-21 09:02:17 (GMT) |
---|---|---|
committer | Harald Fernengel <harald@trolltech.com> | 2009-08-21 09:02:17 (GMT) |
commit | 38e0c07a78fb585e23c4ff8947be737a28b2257c (patch) | |
tree | d6b1bd21d1971c6cde4dfc95c19b8abc4ad57296 /src/script/api/qscriptengine.cpp | |
parent | a44894a39113e0eb9d4f7c912eee4671b3f391c1 (diff) | |
download | Qt-38e0c07a78fb585e23c4ff8947be737a28b2257c.zip Qt-38e0c07a78fb585e23c4ff8947be737a28b2257c.tar.gz Qt-38e0c07a78fb585e23c4ff8947be737a28b2257c.tar.bz2 |
compile again after merge
Diffstat (limited to 'src/script/api/qscriptengine.cpp')
-rw-r--r-- | src/script/api/qscriptengine.cpp | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/src/script/api/qscriptengine.cpp b/src/script/api/qscriptengine.cpp index 6fde08f..131fe28 100644 --- a/src/script/api/qscriptengine.cpp +++ b/src/script/api/qscriptengine.cpp @@ -634,7 +634,7 @@ JSC::JSValue JSC_HOST_CALL functionPrint(JSC::ExecState* exec, JSC::JSObject*, J } if (exec->hadException()) return exec->exception(); - qDebug(qPrintable(result)); + qDebug("%s", qPrintable(result)); return JSC::jsUndefined(); } @@ -3744,8 +3744,6 @@ QScriptValue QScriptEngine::objectById(qint64 id) const QScriptSyntaxCheckResult::QScriptSyntaxCheckResult(const QScriptSyntaxCheckResult &other) : d_ptr(other.d_ptr) { - if (d_ptr) - d_ptr->ref.ref(); } /*! @@ -3754,8 +3752,6 @@ QScriptSyntaxCheckResult::QScriptSyntaxCheckResult(const QScriptSyntaxCheckResul QScriptSyntaxCheckResult::QScriptSyntaxCheckResult(QScriptSyntaxCheckResultPrivate *d) : d_ptr(d) { - if (d_ptr) - d_ptr->ref.ref(); } /*! @@ -3771,10 +3767,6 @@ QScriptSyntaxCheckResult::QScriptSyntaxCheckResult() */ QScriptSyntaxCheckResult::~QScriptSyntaxCheckResult() { - if (d_ptr && !d_ptr->ref.deref()) { - delete d_ptr; - d_ptr = 0; - } } /*! @@ -3836,15 +3828,7 @@ QString QScriptSyntaxCheckResult::errorMessage() const */ QScriptSyntaxCheckResult &QScriptSyntaxCheckResult::operator=(const QScriptSyntaxCheckResult &other) { - if (d_ptr == other.d_ptr) - return *this; - if (d_ptr && !d_ptr->ref.deref()) { - delete d_ptr; - d_ptr = 0; - } d_ptr = other.d_ptr; - if (d_ptr) - d_ptr->ref.ref(); return *this; } |