summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlrefcount.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/qml/qmlrefcount.cpp')
-rw-r--r--src/declarative/qml/qmlrefcount.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlrefcount.cpp b/src/declarative/qml/qmlrefcount.cpp
index 4e47ee1..8f71f1b 100644
--- a/src/declarative/qml/qmlrefcount.cpp
+++ b/src/declarative/qml/qmlrefcount.cpp
@@ -60,7 +60,7 @@ void QmlRefCount::release()
{
Q_ASSERT(refCount > 0);
--refCount;
- if(refCount == 0)
+ if (refCount == 0)
delete this;
}