From 81b11364ede26c72dee2ae22ec4ed4ed5104e72e Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Sat, 5 Feb 2005 09:30:57 +0000 Subject: [PATCH] Removed extra '::' before numeric constants. --- ChangeLog | 5 +++++ src/platforms/posix/posixHandler.cpp | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index a9cb591b..4c499e98 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,11 @@ VERSION 0.6.4cvs ================ +2005-02-05 Vincent Richard + + * platforms/posix/posixHandler.cpp: removed extra '::' before + numeric constants. + 2005-02-05 Vincent Richard * utility/md5.cpp: fixed forward use of swapUint32Array() with diff --git a/src/platforms/posix/posixHandler.cpp b/src/platforms/posix/posixHandler.cpp index 77ba833c..32fe02bc 100644 --- a/src/platforms/posix/posixHandler.cpp +++ b/src/platforms/posix/posixHandler.cpp @@ -104,9 +104,9 @@ const vmime::datetime posixHandler::getCurrentLocalTime() const const vmime::charset posixHandler::getLocaleCharset() const { - vmime::string prevLocale(::setlocale(::LC_ALL, "")); - vmime::charset ch(::nl_langinfo(::CODESET)); - ::setlocale(::LC_ALL, prevLocale.c_str()); + vmime::string prevLocale(::setlocale(LC_ALL, "")); + vmime::charset ch(::nl_langinfo(CODESET)); + ::setlocale(LC_ALL, prevLocale.c_str()); return (ch); }