Monotone-Parent: 259559c21caed39aa6ab914f31e8244a63e1f96a

Monotone-Revision: 269cd0a16b31c221370fdeb7c63b2eb4e0684419

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-11-07T18:14:50
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2006-11-07 18:14:50 +00:00
parent b6b5a78d41
commit 8506eafd68
4 changed files with 30 additions and 1 deletions

View File

@ -63,7 +63,10 @@ SchedulerUI_RESOURCE_FILES += \
SchedulerUI_RESOURCE_FILES += \
Toolbars/SOGoAppointmentFolder.toolbar \
Toolbars/SOGoAppointmentObject.toolbar
Toolbars/SOGoAppointmentObject.toolbar \
Toolbars/SOGoAppointmentObjectAccept.toolbar \
Toolbars/SOGoAppointmentObjectDecline.toolbar \
Toolbars/SOGoAppointmentObjectAcceptOrDecline.toolbar
SchedulerUI_LOCALIZED_RESOURCE_FILES += \
Localizable.strings \

View File

@ -0,0 +1,7 @@
( /* the toolbar groups -*-cperl-*- */
( { link = "#";
isSafe = NO;
label = "accept";
onclick = "return modifyEvent(this, 'accept');";
image = "tb-ab-properties-flat-24x24.png"; } )
)

View File

@ -0,0 +1,12 @@
( /* the toolbar groups -*-cperl-*- */
( { link = "#";
isSafe = NO;
label = "accept";
onclick = "return modifyEvent(this, 'accept');";
image = "tb-ab-properties-flat-24x24.png"; },
{ link = "#";
isSafe = NO;
label = "decline";
onclick = "return modifyEvent(this, 'decline');";
image = "tb-mail-stop-flat-24x24.png"; } )
)

View File

@ -0,0 +1,7 @@
( /* the toolbar groups -*-cperl-*- */
( { link = "#";
isSafe = NO;
label = "decline";
onclick = "return modifyEvent(this, 'decline');";
image = "tb-mail-stop-flat-24x24.png"; } )
)