diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-03-05 16:44:50 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-03-05 16:44:50 +0100 |
commit | 5dbf1809c6e3e905b94b8764e99491e608122261 (patch) | |
tree | 5e5a5360db15d86d59ec8c6e4f7eb511388c5a9a /editor/groups_editor.h | |
parent | 45438e9918d421b244bfd7776a30e67dc7f2d3e3 (diff) | |
download | redot-engine-5dbf1809c6e3e905b94b8764e99491e608122261.tar.gz |
A Whole New World (clang-format edition)
I can show you the code
Pretty, with proper whitespace
Tell me, coder, now when did
You last write readable code?
I can open your eyes
Make you see your bad indent
Force you to respect the style
The core devs agreed upon
A whole new world
A new fantastic code format
A de facto standard
With some sugar
Enforced with clang-format
A whole new world
A dazzling style we all dreamed of
And when we read it through
It's crystal clear
That now we're in a whole new world of code
Diffstat (limited to 'editor/groups_editor.h')
-rw-r--r-- | editor/groups_editor.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/editor/groups_editor.h b/editor/groups_editor.h index 9ab75c6cfd..2b27a3a70c 100644 --- a/editor/groups_editor.h +++ b/editor/groups_editor.h @@ -29,10 +29,10 @@ #ifndef GROUPS_EDITOR_H #define GROUPS_EDITOR_H -#include "scene/gui/dialogs.h" #include "scene/gui/button.h" -#include "scene/gui/tree.h" +#include "scene/gui/dialogs.h" #include "scene/gui/line_edit.h" +#include "scene/gui/tree.h" #include "undo_redo.h" /** @@ -41,7 +41,7 @@ class GroupsEditor : public VBoxContainer { - GDCLASS(GroupsEditor,VBoxContainer); + GDCLASS(GroupsEditor, VBoxContainer); Node *node; @@ -52,16 +52,16 @@ class GroupsEditor : public VBoxContainer { UndoRedo *undo_redo; void update_tree(); - void _add_group(const String& p_group=""); + void _add_group(const String &p_group = ""); void _remove_group(Object *p_item, int p_column, int p_id); void _close(); -protected: +protected: static void _bind_methods(); -public: - void set_undo_redo(UndoRedo *p_undoredo) { undo_redo=p_undoredo; } - void set_current(Node* p_node); +public: + void set_undo_redo(UndoRedo *p_undoredo) { undo_redo = p_undoredo; } + void set_current(Node *p_node); GroupsEditor(); ~GroupsEditor(); |