- Timestamp:
- 07/09/07 10:02:18 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Mulberry/branches/v4.1d1/Sources_Common/Calendar_Store/CCalendarStoreNode.cpp
r19 r86 83 83 84 84 // This constructs an actual node 85 CCalendarStoreNode::CCalendarStoreNode(CCalendarProtocol* proto, CCalendarStoreNode* parent, bool is_dir, const cdstring& name)85 CCalendarStoreNode::CCalendarStoreNode(CCalendarProtocol* proto, CCalendarStoreNode* parent, bool is_dir, bool is_inbox, bool is_outbox, const cdstring& name) 86 86 { 87 87 mProtocol = proto; … … 91 91 mActiveCount = 0; 92 92 SetFlags(eIsDirectory, is_dir); 93 SetFlags(eIsInbox, is_inbox); 94 SetFlags(eIsOutbox, is_outbox); 93 95 mCalendarRef = iCal::cCalendarRef_Invalid; 94 96 mName = name; … … 147 149 { 148 150 GetProtocol()->SizeCalendar(*this); 151 } 152 153 bool CCalendarStoreNode::CanSchedule() const 154 { 155 return mProtocol ? mProtocol->GetHasScheduling() : false; 149 156 } 150 157