1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

Made use of semicolons more consitent, fixed formatting

This commit is contained in:
JohnJLight
2019-03-19 14:35:57 -04:00
committed by Rémi Verschelde
parent 43a9b8c76c
commit 38d3bfe971
143 changed files with 463 additions and 380 deletions

View File

@@ -36,7 +36,7 @@
#include "scene/gui/gradient_edit.h"
class GradientEditor : public GradientEdit {
GDCLASS(GradientEditor, GradientEdit)
GDCLASS(GradientEditor, GradientEdit);
bool editing;
Ref<Gradient> gradient;
@@ -54,7 +54,8 @@ public:
};
class EditorInspectorPluginGradient : public EditorInspectorPlugin {
GDCLASS(EditorInspectorPluginGradient, EditorInspectorPlugin)
GDCLASS(EditorInspectorPluginGradient, EditorInspectorPlugin);
public:
virtual bool can_handle(Object *p_object);
virtual void parse_begin(Object *p_object);