mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
Replace fatals by warnings in CAircraftModelLoaderXPlane
The warning message is there in order to tell developers that one of the rare cases not yet implemeneted were called. This should not cause the application to stop. refs #574, #582
This commit is contained in:
@@ -460,7 +460,7 @@ namespace BlackMisc
|
||||
|
||||
// Flyable aircrafts are parsed by a different method. We don't know any aircraft files in CSL packages.
|
||||
// If there is one, implement this method here.
|
||||
qFatal("Not implemented yet.");
|
||||
CLogMessage(this).warning("Not implemented yet.");
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -474,7 +474,7 @@ namespace BlackMisc
|
||||
}
|
||||
|
||||
// RW: I need an example of the file to properly implement and test it.
|
||||
qFatal("Not implemented yet.");
|
||||
CLogMessage(this).warning("Not implemented yet.");
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -488,7 +488,7 @@ namespace BlackMisc
|
||||
}
|
||||
|
||||
// RW: I need an example of the file to properly implement and test it.
|
||||
qFatal("Not implemented yet.");
|
||||
CLogMessage(this).warning("Not implemented yet.");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user