aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4value_def_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-09-25 11:53:03 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-28 13:33:19 +0200
commit7872b380063d0497ba62fecfdc92148f1ea947af (patch)
treefeb551ff3e60428b0623603b250136d8b98719d1 /src/qml/jsruntime/qv4value_def_p.h
parent4d49787af4ed146636a1b5209f19946988a93863 (diff)
Use SafeValue in more places
Change-Id: Ic15c1419c74f22bd7639ce8746ff11b15240b718 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4value_def_p.h')
-rw-r--r--src/qml/jsruntime/qv4value_def_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4value_def_p.h b/src/qml/jsruntime/qv4value_def_p.h
index 5cf1581588..ae176292da 100644
--- a/src/qml/jsruntime/qv4value_def_p.h
+++ b/src/qml/jsruntime/qv4value_def_p.h
@@ -363,7 +363,7 @@ struct SafeValue : public Value
};
template <typename T>
-struct Safe : public Value
+struct Safe : public SafeValue
{
Safe &operator =(T *t);
Safe &operator =(const Scoped<T> &v);