| 262 | } |
| 263 | |
| 264 | void DateTime::getDate(UInt& month, UInt& day, UInt& year) const |
| 265 | { |
| 266 | const QDate& temp_date = dt_->date(); |
| 267 | |
| 268 | month = temp_date.month(); |
| 269 | day = temp_date.day(); |
| 270 | year = temp_date.year(); |
| 271 | } |
| 272 | |
| 273 | String DateTime::getDate() const |
| 274 | { |