summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2016-09-06 22:52:01 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2016-09-06 22:52:01 -0500
commit1aabc56ca5b178473a78720c88dd577792e98a34 (patch)
tree068b1694567f8bab823c2040e74d3083d8671e6b
parentb099185b9090e30504ef614f3eb0c899ad711fb0 (diff)
downloadqt3-1aabc56c.tar.gz
qt3-1aabc56c.zip
Automated update from TQt3
-rw-r--r--src/tools/qdatetime.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/qdatetime.cpp b/src/tools/qdatetime.cpp
index abf2dcd..6e96161 100644
--- a/src/tools/qdatetime.cpp
+++ b/src/tools/qdatetime.cpp
@@ -1997,7 +1997,7 @@ QDateTime::QDateTime( const QDate &date, const QTime &time )
\sa setTime_t()
*/
-uint QDateTime::toTime_t() const
+time_t QDateTime::toTime_t() const
{
tm brokenDown;
brokenDown.tm_sec = t.second();
@@ -2007,10 +2007,10 @@ uint QDateTime::toTime_t() const
brokenDown.tm_mon = d.month() - 1;
brokenDown.tm_year = d.year() - 1900;
brokenDown.tm_isdst = -1;
- int secsSince1Jan1970UTC = (int) mktime( &brokenDown );
+ time_t secsSince1Jan1970UTC = mktime( &brokenDown );
if ( secsSince1Jan1970UTC < -1 )
secsSince1Jan1970UTC = -1;
- return (uint) secsSince1Jan1970UTC;
+ return secsSince1Jan1970UTC;
}
/*!
@@ -2020,7 +2020,7 @@ uint QDateTime::toTime_t() const
based on the given UTC time.
*/
-void QDateTime::setTime_t( uint secsSince1Jan1970UTC )
+void QDateTime::setTime_t( time_t secsSince1Jan1970UTC )
{
setTime_t( secsSince1Jan1970UTC, Qt::LocalTime );
}
@@ -2037,9 +2037,9 @@ void QDateTime::setTime_t( uint secsSince1Jan1970UTC )
\sa toTime_t()
*/
-void QDateTime::setTime_t( uint secsSince1Jan1970UTC, Qt::TimeSpec ts )
+void QDateTime::setTime_t( time_t secsSince1Jan1970UTC, Qt::TimeSpec ts )
{
- time_t tmp = (time_t) secsSince1Jan1970UTC;
+ time_t tmp = secsSince1Jan1970UTC;
tm *brokenDown = 0;
#if defined(Q_OS_UNIX) && defined(QT_THREAD_SUPPORT) && defined(_POSIX_THREAD_SAFE_FUNCTIONS)