1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-18 03:52:11 +01:00

Removed general error message for savign. Places using the save should

reliably provide feedback.
This commit is contained in:
James Cotton 2011-11-21 07:23:50 -06:00
parent a1f3035f15
commit 084b175290

View File

@ -34,7 +34,6 @@
#include <QDebug>
#include <QEventLoop>
#include <QTimer>
#include <QErrorMessage>
#include <objectpersistence.h>
// ******************************
@ -186,11 +185,6 @@ void UAVObjectUtilManager::objectPersistenceOperationFailed()
saveState = IDLE;
emit saveCompleted(obj->getObjID(), false);
// For now cause error message here to make sure user knows
QErrorMessage err;
err.showMessage("Saving object " + obj->getName() + " failed. Please try again");
err.exec();
saveNextObject();
}