summaryrefslogtreecommitdiff
path: root/src/datetime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/datetime.cpp')
-rw-r--r--src/datetime.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/datetime.cpp b/src/datetime.cpp
index b5ec3b3..c49128a 100644
--- a/src/datetime.cpp
+++ b/src/datetime.cpp
@@ -33,7 +33,7 @@ std::tm getCurrentDateTime()
if (!sourceDateEpoch.isEmpty()) // see https://reproducible-builds.org/specs/source-date-epoch/
{
bool ok;
- uint64 epoch = sourceDateEpoch.toUInt64(&ok);
+ uint64_t epoch = sourceDateEpoch.toUInt64(&ok);
if (!ok)
{
static bool warnedOnce=FALSE;
@@ -60,7 +60,7 @@ std::tm getCurrentDateTime()
return *localtime(&time);
}
-QCString dateToString(bool includeTime)
+QCString dateToString(DateTimeType includeTime)
{
auto current = getCurrentDateTime();
return theTranslator->trDateTime(current.tm_year + 1900,