diff options
| author | Vincent Richard <[email protected]> | 2010-12-06 12:57:44 +0100 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2010-12-06 12:57:44 +0100 |
| commit | 9fa185b454ee06e3dbcb8e3f271edb80bec8cbd5 (patch) | |
| tree | 863c98cdaec301b28a31eda9ad6a405c400cbbd0 | |
| parent | Initialize and delete object. (diff) | |
| download | vmime-9fa185b454ee06e3dbcb8e3f271edb80bec8cbd5.tar.gz vmime-9fa185b454ee06e3dbcb8e3f271edb80bec8cbd5.zip | |
Updated deprecated function.
| -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 30909c22..15d036d9 100644 --- a/doc/book/basics.tex +++ b/doc/book/basics.tex @@ -669,7 +669,7 @@ vmime::string inText = "Linux dans un t�l�phone mobile"; vmime::charset inCharset = "utf-8"; vmime::text outText; -vmime::newFromString(inText, inCharset, &outText); +outText.createFromString(inText, inCharset); // 'outText' now contains 3 words: // . <us-ascii> "Linux dans un " |
