Changeset 3329d39 for src/app/application.cpp
- Timestamp:
- 04/16/10 14:14:19 (13 years ago)
- Branches:
- master, qt5
- Children:
- a61c5f5
- Parents:
- 2eda137
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/app/application.cpp
r2eda137 r3329d39 18 18 */ 19 19 #include "application.h" 20 #include "errormessage.h" 20 21 21 22 #include <ormrecord.h> … … 29 30 return QApplication::notify(receiver, event); 30 31 } catch (OrmException& e) { 31 qWarning() << "UNCAUGHT EXCEPTION: OrmException, text= " << e.text();32 error_message("UNCAUGHT OrmException: " + e.text()); 32 33 return false; 33 34 } catch (...) { 34 qWarning() << "UNCAUGHT EXCEPTION: unknown";35 error_message("UNCAUGHT EXCEPTION: unknown"); 35 36 return false; 36 37 }
Note: See TracChangeset
for help on using the changeset viewer.