mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
umk: fixed to compile
git-svn-id: svn://ultimatepp.org/upp/trunk@15588 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
a365b53600
commit
8b1fc4568e
2 changed files with 4 additions and 3 deletions
|
|
@ -26,7 +26,7 @@ String Ide::GetMain()
|
|||
return main;
|
||||
}
|
||||
|
||||
void Ide::BeginBuilding(bool sync_files, bool clear_console)
|
||||
void Ide::BeginBuilding(bool clear_console)
|
||||
{
|
||||
SetupDefaultMethod();
|
||||
SetHdependDirs();
|
||||
|
|
@ -39,7 +39,8 @@ void Ide::EndBuilding(bool ok)
|
|||
console.EndGroup();
|
||||
console.Wait();
|
||||
Vector<String> errors = console.PickErrors();
|
||||
CreateHost(false, false)->DeleteFile(errors);
|
||||
for(String p: errors)
|
||||
DeleteFile(p);
|
||||
if(!errors.IsEmpty())
|
||||
ok = false;
|
||||
PutConsole("");
|
||||
|
|
|
|||
|
|
@ -147,7 +147,7 @@ struct Ide : public IdeContext, public MakeBuild {
|
|||
virtual void ConsoleClear();
|
||||
virtual void SetupDefaultMethod();
|
||||
virtual Vector<String> PickErrors();
|
||||
virtual void BeginBuilding(bool sync_files, bool clear_console);
|
||||
virtual void BeginBuilding(bool clear_console);
|
||||
virtual void EndBuilding(bool ok);
|
||||
virtual void ClearErrorEditor();
|
||||
virtual void DoProcessEvents();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue