diff options
author | Vincent Richard <[email protected]> | 2013-01-15 12:21:10 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-01-15 12:21:10 +0000 |
commit | ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c (patch) | |
tree | 39536da12a50881850f98c81a8f3ac7838954e2c /examples/example7.cpp | |
parent | Better test for stream state. (diff) | |
download | vmime-ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c.tar.gz vmime-ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c.zip |
Renamed TYPE_BOOL to avoid name collision on MacOS.
Diffstat (limited to 'examples/example7.cpp')
-rw-r--r-- | examples/example7.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example7.cpp b/examples/example7.cpp index adb14df7..2d6e59f2 100644 --- a/examples/example7.cpp +++ b/examples/example7.cpp @@ -91,7 +91,7 @@ int main() { case vmime::net::serviceInfos::property::TYPE_INTEGER: type = "TYPE_INTEGER"; break; case vmime::net::serviceInfos::property::TYPE_STRING: type = "TYPE_STRING"; break; - case vmime::net::serviceInfos::property::TYPE_BOOL: type = "TYPE_BOOL"; break; + case vmime::net::serviceInfos::property::TYPE_BOOLEAN: type = "TYPE_BOOLEAN"; break; default: type = "(unknown)"; break; } |