mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Corrected try/catch to be references
This commit is contained in:
parent
cd7806be59
commit
1a7473d328
@ -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));
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user