1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-07 17:36:07 +00:00

Bring that Whole New World to the Old Continent too

Applies the clang-format style to the 2.1 branch as done for master in
5dbf1809c6.
This commit is contained in:
Rémi Verschelde
2017-03-19 00:36:26 +01:00
parent 1d418afe86
commit f8db8a3faa
1308 changed files with 147754 additions and 174357 deletions

View File

@@ -29,31 +29,27 @@
#ifndef EDITORPLUGINSETTINGS_H
#define EDITORPLUGINSETTINGS_H
#include "scene/gui/dialogs.h"
#include "property_editor.h"
#include "undo_redo.h"
#include "editor_data.h"
#include "property_editor.h"
#include "scene/gui/dialogs.h"
#include "undo_redo.h"
class EditorPluginSettings : public VBoxContainer {
OBJ_TYPE(EditorPluginSettings,VBoxContainer);
OBJ_TYPE(EditorPluginSettings, VBoxContainer);
Button* update_list;
Button *update_list;
Tree *plugin_list;
bool updating;
void _plugin_activity_changed();
protected:
protected:
void _notification(int p_what);
static void _bind_methods();
public:
void update_plugins();
EditorPluginSettings();