Merging //UE4/Dev-Main @ 4091196 to Dev-Core (//UE4/Dev-Core)

#rb none

[CL 4093601 by Robert Manuszewski in Dev-Core branch]
This commit is contained in:
Robert Manuszewski
2018-05-25 05:45:28 -04:00
2548 changed files with 99781 additions and 102520 deletions

View File

@@ -2562,7 +2562,7 @@ void FPyWrapperTypeRegistry::GenerateStubCodeForWrappedType(PyTypeObject* PyType
bFirstEnumMember = false;
}
ExportConstantValue(UTF8_TO_TCHAR(EnumMember.EntryName.GetData()), UTF8_TO_TCHAR(EnumMember.EntryDoc.GetData()), *Lex::ToString(EnumMember.EntryValue));
ExportConstantValue(UTF8_TO_TCHAR(EnumMember.EntryName.GetData()), UTF8_TO_TCHAR(EnumMember.EntryDoc.GetData()), *LexToString(EnumMember.EntryValue));
}
}
}

View File

@@ -8,6 +8,7 @@
#include "PyPtr.h"
#include "Misc/CoreMisc.h"
#include "HAL/IConsoleManager.h"
#include "Framework/Commands/InputChord.h"
class FPythonScriptPlugin;
@@ -31,7 +32,10 @@ public:
virtual bool Exec(const TCHAR* Input) override;
virtual bool AllowHotKeyClose() const override;
virtual bool AllowMultiLine() const override;
virtual FInputChord GetHotKey() const override
{
return FInputChord();
}
private:
FPythonScriptPlugin* PythonScriptPlugin;
};