mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +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) {
|
||||
c+=OpenMachine(m, npath);
|
||||
}
|
||||
} catch (OneTypePerDay e) {
|
||||
} catch (OneTypePerDay& e) {
|
||||
Q_UNUSED(e)
|
||||
p_profile->DelMachine(m);
|
||||
MachList.erase(MachList.find(info.serial));
|
||||
|
@ -581,7 +581,7 @@ void Profile::LoadMachineData()
|
||||
} else {
|
||||
try {
|
||||
m->Load();
|
||||
} catch (OldDBVersion e) {
|
||||
} catch (OldDBVersion& e) {
|
||||
Q_UNUSED(e)
|
||||
DataFormatError(m);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user