diff options
author | Vincent Richard <[email protected]> | 2006-07-13 16:32:39 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2006-07-13 16:32:39 +0000 |
commit | 9a42c8bca4af312b2506a8ae409f9c533946a5c7 (patch) | |
tree | 1cbe3c9907522617393798c70bae73a33b846292 /src/messageBuilder.cpp | |
parent | Fixed warning for uninitialized variable. (diff) | |
download | vmime-9a42c8bca4af312b2506a8ae409f9c533946a5c7.tar.gz vmime-9a42c8bca4af312b2506a8ae409f9c533946a5c7.zip |
Fixed bugs in MHTML code + unit tests.
Diffstat (limited to 'src/messageBuilder.cpp')
-rw-r--r-- | src/messageBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/messageBuilder.cpp b/src/messageBuilder.cpp index 6bf36d6f..d22d31ef 100644 --- a/src/messageBuilder.cpp +++ b/src/messageBuilder.cpp @@ -105,12 +105,12 @@ ref <message> messageBuilder::construct() const // Generate the text parts into this sub-part (normally, this // sub-part will have the "multipart/alternative" content-type...) - m_textPart->generateIn(*msg, *subPart); + m_textPart->generateIn(msg, subPart); } else { // Generate the text part(s) directly into the message - m_textPart->generateIn(*msg, *msg); + m_textPart->generateIn(msg, msg); // If any attachment, set message content-type to "multipart/mixed" if (!m_attach.empty()) |