| 28 | extern Global global; |
| 29 | |
| 30 | AddNote::AddNote(QObject *parent) : |
| 31 | QObject(parent) |
| 32 | { |
| 33 | title = tr("Untitled Note"); |
| 34 | created = QDateTime::currentDateTime().toString("yyyy-MM-ddTHH:mm:ss.zzzZ"); |
| 35 | updated = QDateTime::currentDateTime().toString("yyyy-MM-ddTHH:mm:ss.zzzZ"); |
| 36 | reminder = ""; |
| 37 | attachmentDelimiter = "%%"; |
| 38 | lid = 0; |
| 39 | } |
| 40 | |
| 41 | |
| 42 |