aboutsummaryrefslogtreecommitdiffstats
path: root/src/messaging/urlUtils.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-02-05 09:51:39 +0000
committerVincent Richard <[email protected]>2005-02-05 09:51:39 +0000
commit95b56a703505e26f5457627934405c766ac926f5 (patch)
tree5406cf16c1bbdde6fe681ea302a743b5f1238d77 /src/messaging/urlUtils.cpp
parentRemoved extra '::' before numeric constants. (diff)
downloadvmime-95b56a703505e26f5457627934405c766ac926f5.tar.gz
vmime-95b56a703505e26f5457627934405c766ac926f5.zip
Moved 'static' functions into 'parserHelpers' class.
Diffstat (limited to 'src/messaging/urlUtils.cpp')
-rw-r--r--src/messaging/urlUtils.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/messaging/urlUtils.cpp b/src/messaging/urlUtils.cpp
index 51db470d..d3eefc3d 100644
--- a/src/messaging/urlUtils.cpp
+++ b/src/messaging/urlUtils.cpp
@@ -18,6 +18,7 @@
//
#include "vmime/messaging/urlUtils.hpp"
+#include "vmime/parserHelpers.hpp"
namespace vmime {
@@ -33,7 +34,7 @@ const string urlUtils::encode(const string& s)
{
const char_t c = *it;
- if (isprint(c) && c != '%')
+ if (parserHelpers::isprint(c) && c != '%')
{
result += c;
}