move default to the bottom of bakingStatusToString

This commit is contained in:
Stephen Birarda 2017-08-31 11:52:42 -07:00
parent 84b5afaa4d
commit da8ae23756

View file

@ -97,8 +97,8 @@ QString bakingStatusToString(BakingStatus status) {
return "Baked";
case Error:
return "Error";
default:
case Unrelevant:
default:
return "--";
}
}