diff options
| author | Vincent Richard <[email protected]> | 2012-05-10 21:36:26 +0200 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2012-05-10 21:36:26 +0200 |
| commit | e44d049f578a50e46c351072a44bc511d1b93376 (patch) | |
| tree | fe6d1df9f8c0ae18738a78cef89abac02c2c8118 | |
| parent | Fixed duplicate file reference (thanks to Enes Albay). (diff) | |
| download | vmime-e44d049f578a50e46c351072a44bc511d1b93376.tar.gz vmime-e44d049f578a50e46c351072a44bc511d1b93376.zip | |
Fixed error in sample code.
| -rw-r--r-- | doc/book/msg.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/book/msg.tex b/doc/book/msg.tex index 5ebfe93b..384aab74 100644 --- a/doc/book/msg.tex +++ b/doc/book/msg.tex @@ -51,7 +51,7 @@ std::cout << std::endl << "It was sent by: " << hdr->From()->getValue().dynamicCast <vmime::mailbox>()->getName().getConvertedText(ch) - << " (email: " << hdr->From()->getValue().getEmail() << ")" + << " (email: " << hdr->From()->getValue().dynamicCast<vmime::mailbox>()->getEmail() << ")" << std::endl; \end{lstlisting} |
