aboutsummaryrefslogtreecommitdiffstats
path: root/src/addressList.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-01-06 21:01:41 +0100
committerVincent Richard <[email protected]>2005-01-06 21:01:41 +0100
commit970df50e4813b7e4bd0a7426f7a7f6c25c6b79ec (patch)
tree3581039a80217dd7cd1efd61f45b4f6bc2b10a81 /src/addressList.cpp
parentFixed compilation errors with 'isascii' on some systems. (diff)
downloadvmime-970df50e4813b7e4bd0a7426f7a7f6c25c6b79ec.tar.gz
vmime-970df50e4813b7e4bd0a7426f7a7f6c25c6b79ec.zip
Removed useless 'const' in return value of some functions.
Diffstat (limited to 'src/addressList.cpp')
-rw-r--r--src/addressList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/addressList.cpp b/src/addressList.cpp
index 33708ceb..85178961 100644
--- a/src/addressList.cpp
+++ b/src/addressList.cpp
@@ -220,7 +220,7 @@ address* addressList::getAddressAt(const int pos)
}
-const address* const addressList::getAddressAt(const int pos) const
+const address* addressList::getAddressAt(const int pos) const
{
return (m_list[pos]);
}