diff options
author | Jedrzej Nowacki <jedrzej.nowacki@nokia.com> | 2011-07-08 15:01:42 +0200 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2011-07-11 13:28:17 +0200 |
commit | 9a85b921ac457c68cee0c89b8ad11433b1e92d07 (patch) | |
tree | 2d324a602a8b6658bbed405b6fe6ef374e5ed93e /src/script/api/qscriptstring_p.h | |
parent | b384be8ae195dd52f4f7ca18b0790e8b2793c314 (diff) | |
download | qtscript-9a85b921ac457c68cee0c89b8ad11433b1e92d07.tar.gz |
Replace all QAtomicInt ref variables by QSharedData inheritance.
There is no need to do reference counting by hand. QSharedData class
provide good encapsulation of reference counter.
Change-Id: I2611a51c2fa6673ccca69fe8ff83741ffac06ee9
Reviewed-on: http://codereview.qt.nokia.com/1378
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Olivier Goffart <olivier.goffart@nokia.com>
Diffstat (limited to 'src/script/api/qscriptstring_p.h')
-rw-r--r-- | src/script/api/qscriptstring_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/api/qscriptstring_p.h b/src/script/api/qscriptstring_p.h index 4032e64..bb361c7 100644 --- a/src/script/api/qscriptstring_p.h +++ b/src/script/api/qscriptstring_p.h @@ -36,13 +36,14 @@ // #include <QtCore/qobjectdefs.h> +#include <QtCore/qshareddata.h> #include "Identifier.h" QT_BEGIN_NAMESPACE class QScriptEnginePrivate; -class QScriptStringPrivate +class QScriptStringPrivate : public QSharedData { public: enum AllocationType { @@ -61,7 +62,6 @@ public: static inline bool isValid(const QScriptString &q); - QAtomicInt ref; QScriptEnginePrivate *engine; JSC::Identifier identifier; AllocationType type; |