ecode: Fixed some crashes. Changed default python linter.

This commit is contained in:
Martín Lucas Golini
2021-11-21 14:49:50 -03:00
parent 13db514511
commit 1ac37e1468
10 changed files with 56 additions and 26 deletions

View File

@@ -79,6 +79,8 @@ class EE_API UIAbstractView : public UIScrollableWidget {
virtual void onModelSelectionChange();
void modelUpdate( unsigned flags );
UIAbstractView( const std::string& tag );
virtual ~UIAbstractView();

View File

@@ -125,6 +125,9 @@ class EE_API Engine {
/** @return The id of the thread that was used to initialize the OpenGL Context. */
Uint32 getMainThreadId();
/** @returns True if the current thread is the main thread. */
bool isMainThread() const;
/** @return The instance of platform class that provides some helpers for some platforms */
PlatformHelper* getPlatformHelper();