ICU-900 Fixed some compiler warnings

X-SVN-Rev: 4784
This commit is contained in:
George Rhoten 2001-05-24 21:11:44 +00:00
parent 05478226be
commit addeee49e9
2 changed files with 3 additions and 1 deletions

View File

@ -38,7 +38,8 @@ DateFormat::DateFormat()
//----------------------------------------------------------------------
DateFormat::DateFormat(const DateFormat& other)
: fCalendar(0),
: Format(other),
fCalendar(0),
fNumberFormat(0)
{
*this = other;

View File

@ -75,6 +75,7 @@ NumberFormat::~NumberFormat()
// copy constructor
NumberFormat::NumberFormat(const NumberFormat &source)
: Format(source)
{
*this = source;
}