diff options
author | Vincent Richard <[email protected]> | 2005-11-04 23:21:22 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-11-04 23:21:22 +0000 |
commit | acfa9ffc64f56de42049bf5049810c15477729ed (patch) | |
tree | 3bb84a7319fb209c00f656927c83965f03bd5329 /src/path.cpp | |
parent | Fixed typo for 'ac_cv_sizeof_long'. (diff) | |
download | vmime-acfa9ffc64f56de42049bf5049810c15477729ed.tar.gz vmime-acfa9ffc64f56de42049bf5049810c15477729ed.zip |
Refactored header field values and parameters.
Diffstat (limited to 'src/path.cpp')
-rw-r--r-- | src/path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.cpp b/src/path.cpp index 57cab716..7fefc10d 100644 --- a/src/path.cpp +++ b/src/path.cpp @@ -41,7 +41,7 @@ path::path(const string& localPart, const string& domain) path::path(const path& p) - : component(), m_localPart(p.m_localPart), m_domain(p.m_domain) + : headerFieldValue(), m_localPart(p.m_localPart), m_domain(p.m_domain) { } |