Merge pull request #5697 from TheHX/issue-5664

Fix Orphan StringName on EditorAutoloadSettings class
This commit is contained in:
Rémi Verschelde 2016-07-14 19:29:52 +02:00 committed by GitHub
commit 3e2c7bf797
2 changed files with 1 additions and 3 deletions

View File

@ -36,8 +36,6 @@
#define PREVIEW_LIST_MAX_SIZE 10 #define PREVIEW_LIST_MAX_SIZE 10
StringName EditorAutoloadSettings::autoload_changed = StringName();
void EditorAutoloadSettings::_notification(int p_what) { void EditorAutoloadSettings::_notification(int p_what) {
if (p_what == NOTIFICATION_ENTER_TREE) { if (p_what == NOTIFICATION_ENTER_TREE) {

View File

@ -44,7 +44,7 @@ class EditorAutoloadSettings : public VBoxContainer {
BUTTON_DELETE BUTTON_DELETE
}; };
static StringName autoload_changed; String autoload_changed;
struct AutoLoadInfo { struct AutoLoadInfo {
String name; String name;