Show
Ignore:
Timestamp:
07/09/07 10:02:18 (2 years ago)
Author:
daboo
Message:

Some 4.1 changes. Mostly vCard/CardDAV and CalDAV scheduling support.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Mulberry/branches/v4.1d1/Sources_Common/Application/Calendar/Calendar_View/Calendar_Window/CCalendarViewCommon.cp

    r19 r86  
    2121#include "CDayWeekView.h" 
    2222#include "CEventPreview.h" 
     23#include "CFreeBusyView.h" 
    2324#include "CMonthView.h" 
    2425#include "CPreferences.h" 
     
    5152        // Force reset of entire view 
    5253        FullReset(); 
     54} 
     55 
     56void CCalendarView::SetFreeBusy(iCal::CICalendarRef calref, const cdstring& id, const iCal::CICalendarProperty& organizer, const iCal::CICalendarPropertyList& attendees, const iCal::CICalendarDateTime& date) 
     57{ 
     58        ResetView(NCalendarView::eViewFreeBusy, NULL); 
     59        static_cast<CFreeBusyView*>(mCurrentView)->SetFreeBusy(calref, id, organizer, attendees, date); 
    5360} 
    5461