aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/message.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/message.cpp')
-rw-r--r--src/net/message.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/message.cpp b/src/net/message.cpp
index b8624330..8639625e 100644
--- a/src/net/message.cpp
+++ b/src/net/message.cpp
@@ -34,19 +34,19 @@ namespace vmime {
namespace net {
-ref <const part> part::getPartAt(const int pos) const
+ref <const part> part::getPartAt(const size_t pos) const
{
return getStructure()->getPartAt(pos);
}
-ref <part> part::getPartAt(const int pos)
+ref <part> part::getPartAt(const size_t pos)
{
return getStructure()->getPartAt(pos);
}
-int part::getPartCount() const
+size_t part::getPartCount() const
{
return getStructure()->getPartCount();
}