Minor fix in the SyntaxHighlighter.

ecode: Improved the FormatterModule. Some minor fixes.
This commit is contained in:
Martín Lucas Golini
2021-09-25 22:31:20 -03:00
parent 4cf65c66bc
commit 21e8ae53af
7 changed files with 53 additions and 9 deletions

View File

@@ -373,16 +373,16 @@ void App::onTextDropped( String text ) {
App::App() : mThreadPool( ThreadPool::createShared( eemax<int>( 2, Sys::getCPUCount() ) ) ) {}
App::~App() {
if ( mFileWatcher )
delete mFileWatcher;
if ( mFileSystemListener )
delete mFileSystemListener;
saveConfig();
eeSAFE_DELETE( mEditorSplitter );
eeSAFE_DELETE( mAutoCompleteModule );
eeSAFE_DELETE( mLinterModule );
eeSAFE_DELETE( mFormatterModule );
eeSAFE_DELETE( mConsole );
if ( mFileWatcher )
delete mFileWatcher;
if ( mFileSystemListener )
delete mFileSystemListener;
}
void App::updateRecentFiles() {