Removed extra '::' before numeric constants.
This commit is contained in:
parent
2d02c629a9
commit
81b11364ed
@ -2,6 +2,11 @@
|
||||
VERSION 0.6.4cvs
|
||||
================
|
||||
|
||||
2005-02-05 Vincent Richard <vincent@vincent-richard.net>
|
||||
|
||||
* platforms/posix/posixHandler.cpp: removed extra '::' before
|
||||
numeric constants.
|
||||
|
||||
2005-02-05 Vincent Richard <vincent@vincent-richard.net>
|
||||
|
||||
* utility/md5.cpp: fixed forward use of swapUint32Array() with
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user