diff options
| author | Vincent Richard <[email protected]> | 2005-01-02 17:17:12 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2005-01-02 17:17:12 +0000 |
| commit | af06b4a56d6505a196e07a72aaa6b4b700ad5aa1 (patch) | |
| tree | bb5c904096a5f9bffdf9526eac756420fe24f6f2 /src/fileAttachment.cpp | |
| parent | Added unit tests for 'bodyPart'. (diff) | |
| download | vmime-af06b4a56d6505a196e07a72aaa6b4b700ad5aa1.tar.gz vmime-af06b4a56d6505a196e07a72aaa6b4b700ad5aa1.zip | |
Added 'utility::datetimeUtils' + fixed 'stringUtils' not in namespace 'utility'.
Diffstat (limited to 'src/fileAttachment.cpp')
| -rw-r--r-- | src/fileAttachment.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileAttachment.cpp b/src/fileAttachment.cpp index 04e85123..08397350 100644 --- a/src/fileAttachment.cpp +++ b/src/fileAttachment.cpp @@ -72,7 +72,7 @@ void fileAttachment::generatePart(bodyPart& part) const contentDispositionField& cdf = part.getHeader()->ContentDisposition(); - if (m_fileInfo.hasSize()) cdf.setSize(stringUtils::toString(m_fileInfo.getSize())); + if (m_fileInfo.hasSize()) cdf.setSize(utility::stringUtils::toString(m_fileInfo.getSize())); if (m_fileInfo.hasFilename()) cdf.setFilename(m_fileInfo.getFilename()); if (m_fileInfo.hasCreationDate()) cdf.setCreationDate(m_fileInfo.getCreationDate()); if (m_fileInfo.hasModificationDate()) cdf.setModificationDate(m_fileInfo.getModificationDate()); |
