Patch level : 12.0 790

Files correlati     : fp0400
Commento            : Corretto errore sintassi _temp_dir
This commit is contained in:
Simone Palacino 2019-05-17 12:01:54 +02:00
parent 1c89ed3efe
commit c3fa4194af

View File

@ -512,7 +512,7 @@ void TPassive_mask::clean_ini(const TString& filename) const
#ifdef DBG
remove_string.cut(0) << filename << "*.ini";
#else
remove_string.cut(0) << tmp_dir << "\\" << filename << "*.*";
remove_string.cut(0) << _tmp_dir << "\\" << filename << "*.*";
#endif
remove_files(remove_string, false);
}