synced with main repository

This commit is contained in:
Guenter Obiltschnig
2008-01-28 17:23:19 +00:00
parent fd1d5aed5f
commit da49971d0f
808 changed files with 1154 additions and 892 deletions

View File

@@ -1,7 +1,7 @@
//
// LocalDateTime.cpp
//
// $Id: //poco/Main/Foundation/src/LocalDateTime.cpp#12 $
// $Id: //poco/svn/Foundation/src/LocalDateTime.cpp#3 $
//
// Library: Foundation
// Package: DateTime
@@ -141,7 +141,6 @@ LocalDateTime& LocalDateTime::operator = (const Timestamp& timestamp)
_dateTime = timestamp;
determineTzd(true);
}
return *this;
}
@@ -274,7 +273,7 @@ LocalDateTime& LocalDateTime::operator -= (const Timespan& span)
}
void LocalDateTime::determineTzd (bool adjust)
void LocalDateTime::determineTzd(bool adjust)
{
std::time_t local;
std::tm broken;
@@ -293,5 +292,6 @@ void LocalDateTime::determineTzd (bool adjust)
adjustForTzd();
}
} // namespace Poco