diff options
author | Vincent Richard <[email protected]> | 2013-09-23 07:12:32 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-09-23 07:12:32 +0000 |
commit | 9388c4678a8223913f3f6eb2728951407b585239 (patch) | |
tree | 7e1dd1a78d41c07ee930789c6efd37c608c2a0a8 | |
parent | Merge pull request #53 from mabrand/fix (diff) | |
parent | update class name in example (diff) | |
download | vmime-9388c4678a8223913f3f6eb2728951407b585239.tar.gz vmime-9388c4678a8223913f3f6eb2728951407b585239.zip |
Merge pull request #54 from mabrand/fix
update class name in example
-rw-r--r-- | examples/example6.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/example6.cpp b/examples/example6.cpp index c4acc1c5..e4b272a5 100644 --- a/examples/example6.cpp +++ b/examples/example6.cpp @@ -292,11 +292,11 @@ static std::ostream& operator<<(std::ostream& os, const vmime::exception& e) * @param s structure object * @param level current depth */ -static void printStructure(vmime::ref <const vmime::net::structure> s, const int level = 0) +static void printStructure(vmime::ref <const vmime::net::messageStructure> s, const int level = 0) { for (int i = 0 ; i < s->getPartCount() ; ++i) { - vmime::ref <const vmime::net::part> part = s->getPartAt(i); + vmime::ref <const vmime::net::messagePart> part = s->getPartAt(i); for (int j = 0 ; j < level * 2 ; ++j) std::cout << " "; |