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/editor_log.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/editor_log.h')
-rw-r--r-- | editor/editor_log.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/editor/editor_log.h b/editor/editor_log.h index 965d8d6420..3debbfecd4 100644 --- a/editor/editor_log.h +++ b/editor/editor_log.h @@ -34,15 +34,15 @@ #include "scene/gui/rich_text_label.h" #include "scene/gui/texture_button.h" //#include "scene/gui/empty_control.h" +#include "os/thread.h" +#include "pane_drag.h" #include "scene/gui/box_container.h" #include "scene/gui/panel_container.h" #include "scene/gui/texture_rect.h" #include "scene/gui/tool_button.h" -#include "pane_drag.h" -#include "os/thread.h" class EditorLog : public VBoxContainer { - GDCLASS( EditorLog, VBoxContainer ); + GDCLASS(EditorLog, VBoxContainer); Button *clearbutton; Label *title; @@ -52,7 +52,7 @@ class EditorLog : public VBoxContainer { Control *ec; PanelContainer *pc; - static void _error_handler(void *p_self, const char*p_func, const char*p_file,int p_line, const char*p_error,const char*p_errorexp,ErrorHandlerType p_type); + static void _error_handler(void *p_self, const char *p_func, const char *p_file, int p_line, const char *p_error, const char *p_errorexp, ErrorHandlerType p_type); ErrorHandlerList eh; @@ -60,18 +60,17 @@ class EditorLog : public VBoxContainer { //void _dragged(const Point2& p_ofs); void _clear_request(); - static void _undo_redo_cbk(void *p_self,const String& p_name); -protected: + static void _undo_redo_cbk(void *p_self, const String &p_name); +protected: static void _bind_methods(); void _notification(int p_what); void _override_logger_styles(); -public: - void add_message(const String& p_msg, bool p_error=false); +public: + void add_message(const String &p_msg, bool p_error = false); void deinit(); - void clear(); EditorLog(); ~EditorLog(); |