diff options
author | Vincent Richard <[email protected]> | 2005-01-06 20:01:41 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-01-06 20:01:41 +0000 |
commit | 970df50e4813b7e4bd0a7426f7a7f6c25c6b79ec (patch) | |
tree | 3581039a80217dd7cd1efd61f45b4f6bc2b10a81 /src/mailboxList.cpp | |
parent | Fixed compilation errors with 'isascii' on some systems. (diff) | |
download | vmime-970df50e4813b7e4bd0a7426f7a7f6c25c6b79ec.tar.gz vmime-970df50e4813b7e4bd0a7426f7a7f6c25c6b79ec.zip |
Removed useless 'const' in return value of some functions.
Diffstat (limited to 'src/mailboxList.cpp')
-rw-r--r-- | src/mailboxList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailboxList.cpp b/src/mailboxList.cpp index b05d6097..55f7532a 100644 --- a/src/mailboxList.cpp +++ b/src/mailboxList.cpp @@ -123,7 +123,7 @@ mailbox* mailboxList::getMailboxAt(const int pos) } -const mailbox* const mailboxList::getMailboxAt(const int pos) const +const mailbox* mailboxList::getMailboxAt(const int pos) const { return static_cast <const mailbox*>(addressList::getAddressAt(pos)); } |