]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/i18n/hebrwcal.cpp
ICU-8.11.tar.gz
[apple/icu.git] / icuSources / i18n / hebrwcal.cpp
index b8bd65faa3304e104baa0ebc62567b2cb7c4efdf..1814272b0ce6e86449425531b3ab85a17a28c871 100644 (file)
@@ -1,9 +1,10 @@
 /*
- * Copyright (C) 2003-2004, International Business Machines Corporation
- * and others. All Rights Reserved.
- ******************************************************************************
+******************************************************************************
+* Copyright (C) 2003-2006, International Business Machines Corporation
+* and others. All Rights Reserved.
+******************************************************************************
  *
- * File HEBRWCAL.H
+ * File HEBRWCAL.CPP
  *
  * Modification History:
  *
@@ -31,7 +32,7 @@
  * time of day in sync with that of the Gregorian calendar, we use
  * midnight, rather than sunset the day before.
  */
-static const double EPOCH_MILLIS = -180799862400000.; // 1/1/1 HY
+//static const double EPOCH_MILLIS = -180799862400000.; // 1/1/1 HY
 
 static const int32_t LIMITS[UCAL_FIELD_COUNT][4] = {
   // Minimum  Greatest    Least  Maximum
@@ -263,6 +264,14 @@ void HebrewCalendar::add(UCalendarDateFields field, int32_t amount, UErrorCode&
   }
 }
 
+/**
+ * @deprecated ICU 2.6 use UCalendarDateFields instead of EDateFields
+ */
+void HebrewCalendar::add(EDateFields field, int32_t amount, UErrorCode& status)
+{
+    add((UCalendarDateFields)field, amount, status);
+}
+
 /**
  * Rolls (up/down) a specified amount time on the given field.  For
  * example, to roll the current date up by three days, you can call
@@ -721,7 +730,7 @@ HebrewCalendar::initializeSystemDefaultCentury()
   }
 }
 
-UOBJECT_DEFINE_RTTI_IMPLEMENTATION(HebrewCalendar);
+UOBJECT_DEFINE_RTTI_IMPLEMENTATION(HebrewCalendar)
 
 U_NAMESPACE_END