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); }