aboutsummaryrefslogtreecommitdiffstats
path: root/src/typeAdapter.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-03-12 20:58:48 +0000
committerVincent Richard <[email protected]>2005-03-12 20:58:48 +0000
commit825021442cd6da6b0a0501b63e028e9a7bf1d708 (patch)
tree0a965acd52285adea5758314a4591b553e300453 /src/typeAdapter.cpp
parentMoved header field parsing to 'headerField::parseNext()'. (diff)
downloadvmime-825021442cd6da6b0a0501b63e028e9a7bf1d708.tar.gz
vmime-825021442cd6da6b0a0501b63e028e9a7bf1d708.zip
Fixed parameters not showing as child components + fixed parsing bounds in typeAdapter.
Diffstat (limited to 'src/typeAdapter.cpp')
-rw-r--r--src/typeAdapter.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/typeAdapter.cpp b/src/typeAdapter.cpp
index 13651900..2d0b73ed 100644
--- a/src/typeAdapter.cpp
+++ b/src/typeAdapter.cpp
@@ -33,6 +33,8 @@ void typeAdapter <string>::parse(const string& buffer, const string::size_type p
{
m_value = string(buffer.begin() + position, buffer.begin() + end);
+ setParsedBounds(position, end);
+
if (newPosition)
*newPosition = end;
}