diff --git a/UI/Contacts/GNUmakefile b/UI/Contacts/GNUmakefile index 7faca8e7d..94553bdfd 100644 --- a/UI/Contacts/GNUmakefile +++ b/UI/Contacts/GNUmakefile @@ -11,6 +11,7 @@ ContactsUI_LANGUAGES = English French ContactsUI_OBJC_FILES = \ UIxContactsSchedulerSelection.m \ UIxContactsMailerSelection.m \ + UIxContactsCalendarsSelection.m \ \ ContactsUIProduct.m \ UIxContactsFilterPanel.m \ diff --git a/UI/Contacts/UIxContactFoldersView.m b/UI/Contacts/UIxContactFoldersView.m index 7024c2837..661301d38 100644 --- a/UI/Contacts/UIxContactFoldersView.m +++ b/UI/Contacts/UIxContactFoldersView.m @@ -71,4 +71,9 @@ return [self _selectActionForApplication: @"mailer-contacts"]; } +- (id) selectForCalendarsAction +{ + return [self _selectActionForApplication: @"calendars-contacts"]; +} + @end diff --git a/UI/Contacts/product.plist b/UI/Contacts/product.plist index 1108f5ca0..eb64edfd3 100644 --- a/UI/Contacts/product.plist +++ b/UI/Contacts/product.plist @@ -29,6 +29,11 @@ pageName = "UIxContactFoldersView"; actionName = "selectForMailer"; }; + calendars-contacts = { + protectedBy = "View"; + pageName = "UIxContactFoldersView"; + actionName = "selectForCalendars"; + }; }; }; @@ -59,6 +64,11 @@ pageName = "UIxContactsListView"; actionName = "mailerContacts"; }; + calendars-contacts = { + protectedBy = "View"; + pageName = "UIxContactsListView"; + actionName = "calendarsContacts"; + }; }; }; @@ -89,6 +99,11 @@ pageName = "UIxContactsListView"; actionName = "mailerContacts"; }; + calendars-contacts = { + protectedBy = "View"; + pageName = "UIxContactsListView"; + actionName = "calendarsContacts"; + }; }; }; diff --git a/UI/Scheduler/GNUmakefile b/UI/Scheduler/GNUmakefile index b371dc304..9f348fe9a 100644 --- a/UI/Scheduler/GNUmakefile +++ b/UI/Scheduler/GNUmakefile @@ -20,6 +20,7 @@ SchedulerUI_OBJC_FILES = \ \ UIxComponent+Agenor.m \ UIxCalView.m \ + UIxCalCalendarsListView.m \ UIxCalAptListView.m \ UIxCalTasksListView.m \ UIxCalDayView.m \