diff options
author | Vincent Richard <[email protected]> | 2005-12-29 23:10:57 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-12-29 23:10:57 +0000 |
commit | f615d0c47a0585d08fb6aa1a8c831bf1778eab2a (patch) | |
tree | 914fbf3a69110c4dcaae2d2ff5545413d73b5bc6 | |
parent | Added support for getaddrinfo() on POSIX. (diff) | |
download | vmime-f615d0c47a0585d08fb6aa1a8c831bf1778eab2a.tar.gz vmime-f615d0c47a0585d08fb6aa1a8c831bf1778eab2a.zip |
Fixed mistake.
-rw-r--r-- | doc/book/basics.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/book/basics.tex b/doc/book/basics.tex index b6c41e41..da492e43 100644 --- a/doc/book/basics.tex +++ b/doc/book/basics.tex @@ -545,7 +545,7 @@ vmime::ref <vmime::message> msg; // Obtains a reference to the body contents vmime::ref <vmime::body> body = msg->getBody(); -vmime::ref <vmime::contentHandler> cts = msg->getContents(); +vmime::ref <vmime::contentHandler> cts = body->getContents(); vmime::utility::outputStreamAdapter out(std::cout); cts->extract(out); |