| 280 | } |
| 281 | |
| 282 | void DateTime::getTime(UInt& hour, UInt& minute, UInt& second) const |
| 283 | { |
| 284 | const QTime& temp_time =dt_->time(); |
| 285 | |
| 286 | hour = temp_time.hour(); |
| 287 | minute = temp_time.minute(); |
| 288 | second = temp_time.second(); |
| 289 | } |
| 290 | |
| 291 | String DateTime::getTime() const |
| 292 | { |