Corrected try/catch to be references

This commit is contained in:
Bob Kenny 2016-01-04 01:32:37 -05:00
parent cd7806be59
commit 1a7473d328
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ int FPIconLoader::Open(QString path)
if (m) { if (m) {
c+=OpenMachine(m, npath); c+=OpenMachine(m, npath);
} }
} catch (OneTypePerDay e) { } catch (OneTypePerDay& e) {
Q_UNUSED(e) Q_UNUSED(e)
p_profile->DelMachine(m); p_profile->DelMachine(m);
MachList.erase(MachList.find(info.serial)); MachList.erase(MachList.find(info.serial));

View File

@ -581,7 +581,7 @@ void Profile::LoadMachineData()
} else { } else {
try { try {
m->Load(); m->Load();
} catch (OldDBVersion e) { } catch (OldDBVersion& e) {
Q_UNUSED(e) Q_UNUSED(e)
DataFormatError(m); DataFormatError(m);
} }