mirror of
https://github.com/glest/glest-source.git
synced 2025-10-01 18:06:44 +02:00
- some code cleanup for multi-build debug
This commit is contained in:
@@ -648,6 +648,7 @@ Command *Unit::getCurrCommand() const{
|
|||||||
void Unit::replaceCurrCommand(Command *cmd) {
|
void Unit::replaceCurrCommand(Command *cmd) {
|
||||||
assert(!commands.empty());
|
assert(!commands.empty());
|
||||||
commands.front() = cmd;
|
commands.front() = cmd;
|
||||||
|
this->setCurrentUnitTitle("");
|
||||||
}
|
}
|
||||||
|
|
||||||
//returns the size of the commands
|
//returns the size of the commands
|
||||||
@@ -1309,6 +1310,7 @@ void Unit::updateTarget(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Unit::clearCommands() {
|
void Unit::clearCommands() {
|
||||||
|
this->setCurrentUnitTitle("");
|
||||||
while(!commands.empty()){
|
while(!commands.empty()){
|
||||||
undoCommand(commands.back());
|
undoCommand(commands.back());
|
||||||
delete commands.back();
|
delete commands.back();
|
||||||
@@ -1474,6 +1476,7 @@ CommandResult Unit::undoCommand(Command *command){
|
|||||||
}
|
}
|
||||||
|
|
||||||
retryCurrCommandCount=0;
|
retryCurrCommandCount=0;
|
||||||
|
this->setCurrentUnitTitle("");
|
||||||
|
|
||||||
return crSuccess;
|
return crSuccess;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user