Browse Source

Merge pull request #5641 from DonLakeFlyer/StableMerge

Bring stable across to master
QGC4.4
Don Gagne 8 years ago committed by GitHub
parent
commit
54780e15a8
  1. 2
      src/QGCApplication.cc
  2. 6
      src/Vehicle/Vehicle.cc

2
src/QGCApplication.cc

@ -401,11 +401,11 @@ bool QGCApplication::_initForNormalAppBoot(void) @@ -401,11 +401,11 @@ bool QGCApplication::_initForNormalAppBoot(void)
// Start the user interface
MainWindow* mainWindow = MainWindow::_create();
Q_CHECK_PTR(mainWindow);
#endif
// Now that main window is up check for lost log files
connect(this, &QGCApplication::checkForLostLogFiles, toolbox()->mavlinkProtocol(), &MAVLinkProtocol::checkForLostLogFiles);
emit checkForLostLogFiles();
#endif
// Load known link configurations
toolbox()->linkManager()->loadLinkConfigurationList();

6
src/Vehicle/Vehicle.cc

@ -1836,19 +1836,19 @@ void Vehicle::sendMessageMultiple(mavlink_message_t message) @@ -1836,19 +1836,19 @@ void Vehicle::sendMessageMultiple(mavlink_message_t message)
void Vehicle::_missionManagerError(int errorCode, const QString& errorMsg)
{
Q_UNUSED(errorCode);
qgcApp()->showMessage(QString("Error during Mission communication with Vehicle: %1").arg(errorMsg));
qgcApp()->showMessage(QString("Mission transfer failed. Retry transfer. Error: %1").arg(errorMsg));
}
void Vehicle::_geoFenceManagerError(int errorCode, const QString& errorMsg)
{
Q_UNUSED(errorCode);
qgcApp()->showMessage(QString("Error during GeoFence communication with Vehicle: %1").arg(errorMsg));
qgcApp()->showMessage(QString("GeoFence transfer failed. Retry transfer. Error: %1").arg(errorMsg));
}
void Vehicle::_rallyPointManagerError(int errorCode, const QString& errorMsg)
{
Q_UNUSED(errorCode);
qgcApp()->showMessage(QString("Error during Rally Point communication with Vehicle: %1").arg(errorMsg));
qgcApp()->showMessage(QString("Rally Point transfer failed. Retry transfer. Error: %1").arg(errorMsg));
}
void Vehicle::_addNewMapTrajectoryPoint(void)

Loading…
Cancel
Save