alteredTime.setDisplayFormat(Global.getTimeFormat());
}
// Set the subject date
public void setSubjectDate(long date) {
QDateTime dt = new QDateTime();
dt.setTime_t((int) (date / 1000));
subjectDate.setDateTime(dt);
subjectTime.setDateTime(dt);
subjectDate.setDisplayFormat(Global.getDateFormat());
subjectTime.setDisplayFormat(Global.getTimeFormat());
}