aboutsummaryrefslogtreecommitdiffstats
path: root/lang/cpp/src/tofuinfo.cpp
diff options
context:
space:
mode:
authorAndre Heinecke <[email protected]>2016-08-25 08:46:17 +0000
committerAndre Heinecke <[email protected]>2016-08-25 09:41:57 +0000
commitde7b67f9b2e6bd43a036fa0bcc6a8ca4f5b10986 (patch)
treec97f122ecb06a1abb1b81e9a4da38be53e7be18e /lang/cpp/src/tofuinfo.cpp
parentCpp: Add wrapper for gpgme_get_dirinfo (diff)
downloadgpgme-de7b67f9b2e6bd43a036fa0bcc6a8ca4f5b10986.tar.gz
gpgme-de7b67f9b2e6bd43a036fa0bcc6a8ca4f5b10986.zip
Cpp: Change firstSeen / lastSeen return values
* lang/cpp/src/tofuinfo.cpp, lang/cpp/src/tofuinfo.h (TofuInfo::firstSeen, TofuInfo::lastSeen): Change return values to unsigned long and update doc.
Diffstat (limited to '')
-rw-r--r--lang/cpp/src/tofuinfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/cpp/src/tofuinfo.cpp b/lang/cpp/src/tofuinfo.cpp
index fe8f051f..ade262bb 100644
--- a/lang/cpp/src/tofuinfo.cpp
+++ b/lang/cpp/src/tofuinfo.cpp
@@ -123,12 +123,12 @@ unsigned short GpgME::TofuInfo::signCount() const
return isNull() ? 0 : d->mInfo->signcount;
}
-unsigned int GpgME::TofuInfo::firstSeen() const
+unsigned long GpgME::TofuInfo::firstSeen() const
{
return isNull() ? 0 : d->mInfo->firstseen;
}
-unsigned int GpgME::TofuInfo::lastSeen() const
+unsigned long GpgME::TofuInfo::lastSeen() const
{
return isNull() ? 0 : d->mInfo->lastseen;
}