From c462992315837e81de8da8bff29a9c51f6ee4c3f Mon Sep 17 00:00:00 2001 From: "mostafah%oeone.com" Date: Tue, 22 Oct 2002 18:59:36 +0000 Subject: [PATCH] Renamed displayDateEnd to displayEndDate git-svn-id: svn://10.0.0.236/trunk@132370 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/calendar/libxpical/oeICalEventImpl.cpp | 8 ++++---- mozilla/calendar/libxpical/oeICalImpl.cpp | 4 ++-- mozilla/calendar/libxpical/oeIICal.idl | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/mozilla/calendar/libxpical/oeICalEventImpl.cpp b/mozilla/calendar/libxpical/oeICalEventImpl.cpp index 1231016399c..073187ad6ac 100644 --- a/mozilla/calendar/libxpical/oeICalEventImpl.cpp +++ b/mozilla/calendar/libxpical/oeICalEventImpl.cpp @@ -2458,20 +2458,20 @@ NS_IMETHODIMP oeICalEventDisplayImpl::SetDisplayDate( PRTime aNewVal ) return NS_OK; } -NS_IMETHODIMP oeICalEventDisplayImpl::GetDisplayDateEnd( PRTime *aRetVal ) +NS_IMETHODIMP oeICalEventDisplayImpl::GetDisplayEndDate( PRTime *aRetVal ) { #ifdef ICAL_DEBUG_ALL - printf( "oeICalEventDisplayImpl::GetDisplayDateEnd()\n" ); + printf( "oeICalEventDisplayImpl::GetDisplayEndDate()\n" ); #endif *aRetVal = ConvertToPrtime( m_displaydateend ); return NS_OK; } -NS_IMETHODIMP oeICalEventDisplayImpl::SetDisplayDateEnd( PRTime aNewVal ) +NS_IMETHODIMP oeICalEventDisplayImpl::SetDisplayEndDate( PRTime aNewVal ) { #ifdef ICAL_DEBUG_ALL - printf( "oeICalEventDisplayImpl::SetDisplayDateEnd()\n" ); + printf( "oeICalEventDisplayImpl::SetDisplayEndDate()\n" ); #endif m_displaydateend = ConvertFromPrtime( aNewVal ); return NS_OK; diff --git a/mozilla/calendar/libxpical/oeICalImpl.cpp b/mozilla/calendar/libxpical/oeICalImpl.cpp index f9f1dc3b113..8150cc07733 100644 --- a/mozilla/calendar/libxpical/oeICalImpl.cpp +++ b/mozilla/calendar/libxpical/oeICalImpl.cpp @@ -1371,14 +1371,14 @@ void oeICalImpl::ChopAndAddEventToEnum( struct icaltimetype initialdisplaydate, if( icaltime_compare( endofday, eventenddate ) < 0 ) { enddateinms = ConvertToPrtime( endofday ); - eventDisplay->SetDisplayDateEnd( enddateinms ); + eventDisplay->SetDisplayEndDate( enddateinms ); startdate = endofday; icaltime_adjust( &startdate, 0, 0, 0, 1 ); if( icaltime_compare( startdate, checkenddate ) >= 0 ) break; } else { enddateinms = ConvertToPrtime( eventenddate ); - eventDisplay->SetDisplayDateEnd( enddateinms ); + eventDisplay->SetDisplayEndDate( enddateinms ); break; } } while ( 1 ); diff --git a/mozilla/calendar/libxpical/oeIICal.idl b/mozilla/calendar/libxpical/oeIICal.idl index 22c3c6aefcd..29399170751 100644 --- a/mozilla/calendar/libxpical/oeIICal.idl +++ b/mozilla/calendar/libxpical/oeIICal.idl @@ -153,7 +153,7 @@ interface oeIICalEventDisplay : oeIICalEvent { readonly attribute oeIICalEvent event; attribute PRTime displayDate; - attribute PRTime displayDateEnd; + attribute PRTime displayEndDate; }; [scriptable, uuid(d44987b4-1dd1-11b2-9783-8a78ed685caf)]