aboutsummaryrefslogtreecommitdiffstats
path: root/src/propertySet.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-01-02 17:17:12 +0000
committerVincent Richard <[email protected]>2005-01-02 17:17:12 +0000
commitaf06b4a56d6505a196e07a72aaa6b4b700ad5aa1 (patch)
treebb5c904096a5f9bffdf9526eac756420fe24f6f2 /src/propertySet.cpp
parentAdded unit tests for 'bodyPart'. (diff)
downloadvmime-af06b4a56d6505a196e07a72aaa6b4b700ad5aa1.tar.gz
vmime-af06b4a56d6505a196e07a72aaa6b4b700ad5aa1.zip
Added 'utility::datetimeUtils' + fixed 'stringUtils' not in namespace 'utility'.
Diffstat (limited to 'src/propertySet.cpp')
-rw-r--r--src/propertySet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/propertySet.cpp b/src/propertySet.cpp
index 317a5add..edfaf8ff 100644
--- a/src/propertySet.cpp
+++ b/src/propertySet.cpp
@@ -308,7 +308,7 @@ const string propertySet::property::getValue() const
template <>
const bool propertySet::property::getValue() const
{
- if (stringUtils::toLower(m_value) == "true")
+ if (utility::stringUtils::toLower(m_value) == "true")
return true;
else
{