Skip to content

Commit

Permalink
rename folowup mail window
Browse files Browse the repository at this point in the history
  • Loading branch information
bavincen committed Apr 26, 2016
1 parent ab836f9 commit 5e02727
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions chrome/content/exchService-common-sets.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ newOpenEventDialog(calendarItem, calendar, mode, callback, job, initialDate);
}

function newOpenEventDialog(calendarItem, calendar, mode, callback, job, initialDate) {
let dlg = cal.findItemWindow(calendarItem);
calendarItem = calendarItem.clone();
let dlg = cal.findItemWindow(calendarItem);
if (dlg) {
dlg.focus();
disposeJob(job);
Expand Down Expand Up @@ -125,8 +126,8 @@ function newOpenEventDialog(calendarItem, calendar, mode, callback, job, initial
} else {
url = "chrome://calendar/content/calendar-summary-dialog.xul";
}
calendarItem = calendarItem.clone();
if( calendarItem.itemClass == "IPM.Note" ) url = "chrome://exchangecalendar/content/calendar-event-dialog2.xul";

if( calendarItem.itemClass == "IPM.Note" ) url = "chrome://exchangecalendar/content/exchService-followup-event-dialog.xul";

// reminder: event dialog should not be modal (cf bug 122671)
var features;
Expand Down
File renamed without changes.

1 comment on commit 5e02727

@jeka
Copy link

@jeka jeka commented on 5e02727 May 11, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am getting this error now:
File not found

The file /home/jekov/.thunderbird/civgdo6e.default/extensions/[email protected]/chrome/content/exchService-followup-event-dialog.xul cannot be found. Please check the location and try again.

Check the file name for capitalization or other typing errors.
Check to see if the file was moved, renamed or deleted.

opening task works after soft linking .xul to .xml but this dialog in not functional at all ...

Please sign in to comment.