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/propertySet.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/propertySet.cpp')
-rw-r--r-- | src/propertySet.cpp | 2 |
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 { |