diff options
| author | Karroffel | 2017-06-13 23:47:34 +0200 |
|---|---|---|
| committer | Karroffel | 2017-06-14 01:24:04 +0200 |
| commit | 23c5fa86877ba90be8e6d4c06adc3dca18a8a784 (patch) | |
| tree | e34123db136d2a5bf1fa5554f5ba2c5e83363d6e /scene/gui/gradient_edit.h | |
| parent | a8a1f2e2a864e6b58d5bcf1c7e53a43cdb6d95d9 (diff) | |
| download | godot-23c5fa86877ba90be8e6d4c06adc3dca18a8a784.tar.gz godot-23c5fa86877ba90be8e6d4c06adc3dca18a8a784.tar.zst godot-23c5fa86877ba90be8e6d4c06adc3dca18a8a784.zip | |
renamed occurances of ColorRamp with Gradient
ColorRamp got renamed to Gradient recently, reduz missed some occurances though.
Diffstat (limited to '')
| -rw-r--r-- | scene/gui/gradient_edit.h (renamed from scene/gui/color_ramp_edit.h) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scene/gui/color_ramp_edit.h b/scene/gui/gradient_edit.h index 0fe447c43..6c4ae6fd1 100644 --- a/scene/gui/color_ramp_edit.h +++ b/scene/gui/gradient_edit.h @@ -37,9 +37,9 @@ #define POINT_WIDTH 8 -class ColorRampEdit : public Control { +class GradientEdit : public Control { - GDCLASS(ColorRampEdit, Control); + GDCLASS(GradientEdit, Control); PopupPanel *popup; ColorPicker *picker; @@ -68,8 +68,8 @@ public: Vector<Gradient::Point> &get_points(); virtual Size2 get_minimum_size() const; - ColorRampEdit(); - virtual ~ColorRampEdit(); + GradientEdit(); + virtual ~GradientEdit(); }; /*class ColorRampEditPanel : public Panel |
