diff options
author | Timothy Pearson <[email protected]> | 2016-09-06 22:54:46 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2016-09-06 22:54:46 -0500 |
commit | 3cb304fd0cd8d44ccea66bd9a802ce78e14efb17 (patch) | |
tree | dce3b1a0ee43758152734070a16dd6592af51bfa | |
parent | 1aabc56ca5b178473a78720c88dd577792e98a34 (diff) | |
download | qt3-3cb304fd0cd8d44ccea66bd9a802ce78e14efb17.tar.gz qt3-3cb304fd0cd8d44ccea66bd9a802ce78e14efb17.zip |
Automated update from TQt3
-rw-r--r-- | src/tools/qdatetime.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/qdatetime.h b/src/tools/qdatetime.h index 7a58667..1c7b972 100644 --- a/src/tools/qdatetime.h +++ b/src/tools/qdatetime.h @@ -196,11 +196,11 @@ public: QDate date() const { return d; } QTime time() const { return t; } - uint toTime_t() const; + time_t toTime_t() const; void setDate( const QDate &date ) { d = date; } void setTime( const QTime &time ) { t = time; } - void setTime_t( uint secsSince1Jan1970UTC ); - void setTime_t( uint secsSince1Jan1970UTC, Qt::TimeSpec ); + void setTime_t( time_t secsSince1Jan1970UTC ); + void setTime_t( time_t secsSince1Jan1970UTC, Qt::TimeSpec ); #ifndef QT_NO_DATESTRING #ifndef QT_NO_SPRINTF QString toString( Qt::DateFormat f = Qt::TextDate ) const; |