personsStr = event.persons().join(" and ");
roomStr = event.room();
}
- catch(OrmNoObjectException*)
+ catch(OrmNoObjectException&)
{
titleStr = QString("ERROR");
messageStr = QString("No such event in the DB: %1").arg(QString::number(mEventId));
event.setHasAlarm(false);
event.update("alarm");
}
- catch(OrmNoObjectException*) {} // TODO: implement
+ catch(OrmNoObjectException) {} // TODO: implement
catch(...) {} // just close dialog
qApp->quit();
}
EventDialog dialog(aEventId,this);
dialog.exec();
}
- catch(OrmNoObjectException*) {} // just start application
+ catch(OrmNoObjectException) {} // just start application
catch(...) {} // just start application
}
}