- Timestamp:
- 04/16/10 14:14:19 (13 years ago)
- Branches:
- master, qt5
- Children:
- a61c5f5
- Parents:
- 2eda137
- Location:
- src/app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/app/app.pro
r2eda137 r3329d39 4 4 DESTDIR = ../bin 5 5 QT += sql xml network dbus 6 CONFIG(maemo5) { 7 QT += maemo5 8 } 6 9 7 10 # module dependencies -
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.