summaryrefslogtreecommitdiff
path: root/editor/editor_properties.h
diff options
context:
space:
mode:
authorAlexander Holland <alexander.holland@live.de>2018-09-02 19:16:33 +0200
committerAlexander Holland <alexander.holland@live.de>2018-11-24 10:13:14 +0100
commit66d8ce0c058b4c4a97ac4bded08da9edad9bf297 (patch)
tree356de0549beb0129f130b2247a298adca25414c9 /editor/editor_properties.h
parent60cbb69c7c40efd72234ef10e77767347d8df6c4 (diff)
Fix multiselect change property
Diffstat (limited to 'editor/editor_properties.h')
-rw-r--r--editor/editor_properties.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/editor/editor_properties.h b/editor/editor_properties.h
index 541abb1f22..a9751e3d16 100644
--- a/editor/editor_properties.h
+++ b/editor/editor_properties.h
@@ -336,7 +336,7 @@ class EditorPropertyVector2 : public EditorProperty {
GDCLASS(EditorPropertyVector2, EditorProperty)
EditorSpinSlider *spin[2];
bool setting;
- void _value_changed(double p_val);
+ void _value_changed(double p_val, const String &p_name);
protected:
void _notification(int p_what);
@@ -352,7 +352,7 @@ class EditorPropertyRect2 : public EditorProperty {
GDCLASS(EditorPropertyRect2, EditorProperty)
EditorSpinSlider *spin[4];
bool setting;
- void _value_changed(double p_val);
+ void _value_changed(double p_val, const String &p_name);
protected:
void _notification(int p_what);
@@ -368,7 +368,7 @@ class EditorPropertyVector3 : public EditorProperty {
GDCLASS(EditorPropertyVector3, EditorProperty)
EditorSpinSlider *spin[3];
bool setting;
- void _value_changed(double p_val);
+ void _value_changed(double p_val, const String &p_name);
protected:
void _notification(int p_what);
@@ -384,7 +384,7 @@ class EditorPropertyPlane : public EditorProperty {
GDCLASS(EditorPropertyPlane, EditorProperty)
EditorSpinSlider *spin[4];
bool setting;
- void _value_changed(double p_val);
+ void _value_changed(double p_val, const String &p_name);
protected:
void _notification(int p_what);
@@ -400,7 +400,7 @@ class EditorPropertyQuat : public EditorProperty {
GDCLASS(EditorPropertyQuat, EditorProperty)
EditorSpinSlider *spin[4];
bool setting;
- void _value_changed(double p_val);
+ void _value_changed(double p_val, const String &p_name);
protected:
void _notification(int p_what);
@@ -416,7 +416,7 @@ class EditorPropertyAABB : public EditorProperty {
GDCLASS(EditorPropertyAABB, EditorProperty)
EditorSpinSlider *spin[6];
bool setting;
- void _value_changed(double p_val);
+ void _value_changed(double p_val, const String &p_name);
protected:
void _notification(int p_what);
@@ -432,7 +432,7 @@ class EditorPropertyTransform2D : public EditorProperty {
GDCLASS(EditorPropertyTransform2D, EditorProperty)
EditorSpinSlider *spin[6];
bool setting;
- void _value_changed(double p_val);
+ void _value_changed(double p_val, const String &p_name);
protected:
void _notification(int p_what);
@@ -448,7 +448,7 @@ class EditorPropertyBasis : public EditorProperty {
GDCLASS(EditorPropertyBasis, EditorProperty)
EditorSpinSlider *spin[9];
bool setting;
- void _value_changed(double p_val);
+ void _value_changed(double p_val, const String &p_name);
protected:
void _notification(int p_what);
@@ -464,7 +464,7 @@ class EditorPropertyTransform : public EditorProperty {
GDCLASS(EditorPropertyTransform, EditorProperty)
EditorSpinSlider *spin[12];
bool setting;
- void _value_changed(double p_val);
+ void _value_changed(double p_val, const String &p_name);
protected:
void _notification(int p_what);