aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/qml/qml/qqmlabstractbinding_p.h2
-rw-r--r--src/qml/qml/qqmlinstruction_p.h14
2 files changed, 1 insertions, 15 deletions
diff --git a/src/qml/qml/qqmlabstractbinding_p.h b/src/qml/qml/qqmlabstractbinding_p.h
index aa39e1cdfd..4182a5cc88 100644
--- a/src/qml/qml/qqmlabstractbinding_p.h
+++ b/src/qml/qml/qqmlabstractbinding_p.h
@@ -91,7 +91,7 @@ public:
typedef QWeakPointer<QQmlAbstractBinding> Pointer;
- enum BindingType { Binding = 0, V4 = 1, V8 = 2, ValueTypeProxy = 3 };
+ enum BindingType { Binding = 0, V8 = 1, ValueTypeProxy = 2 };
inline BindingType bindingType() const;
// Destroy the binding. Use this instead of calling delete.
diff --git a/src/qml/qml/qqmlinstruction_p.h b/src/qml/qml/qqmlinstruction_p.h
index 9380ee321c..cae99e4634 100644
--- a/src/qml/qml/qqmlinstruction_p.h
+++ b/src/qml/qml/qqmlinstruction_p.h
@@ -241,19 +241,6 @@ union QQmlInstruction
ushort programIndex;
ushort line;
};
- struct instr_assignV4Binding {
- QML_INSTR_HEADER
- int property; // ((value type sub-property index << 16) | property index)
- int propType;
- int value;
- int fallbackValue;
- short context;
- short owner;
- bool isRoot:1;
- bool isAlias:1;
- ushort line;
- ushort column;
- };
struct instr_assignBinding {
QML_INSTR_HEADER
QQmlPropertyRawData property;
@@ -510,7 +497,6 @@ union QQmlInstruction
instr_assignValueSource assignValueSource;
instr_assignValueInterceptor assignValueInterceptor;
instr_initV8Bindings initV8Bindings;
- instr_assignV4Binding assignV4Binding;
instr_assignBinding assignBinding;
instr_fetch fetch;
instr_fetchValue fetchValue;