Skip to content

Commit eaa1c2d

Browse files
committed
bump-version
2 parents 78377ee + a641199 commit eaa1c2d

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

Diff for: chrome/content/exchService-common-sets.js

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ newOpenEventDialog(calendarItem, calendar, mode, callback, job, initialDate);
2323
}
2424

2525
function newOpenEventDialog(calendarItem, calendar, mode, callback, job, initialDate) {
26-
calendarItem = calendarItem.clone();
2726
let dlg = cal.findItemWindow(calendarItem);
2827
if (dlg) {
2928
dlg.focus();

Diff for: install.rdf

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55

66
<Description about="urn:mozilla:install-manifest">
77
<em:id>[email protected]</em:id>
8-
<em:version>3.8.0-beta2</em:version>
9-
8+
<em:version>3.8.0-beta3</em:version>
109
<em:targetApplication>
1110
<Description>
1211
<!-- Thunderbird -->
1312
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
1413
<em:minVersion>12.0</em:minVersion>
15-
<em:maxVersion>38.*</em:maxVersion>
14+
<em:maxVersion>45.*</em:maxVersion>
1615
</Description>
1716
</em:targetApplication>
1817

Diff for: interfaces/exchangeAccountManager/mivExchangeAccountManager.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,15 +193,15 @@ mivExchangeAccountManager.prototype = {
193193
logInfo: function _logInfo(aMsg, aDebugLevel)
194194
{
195195
return;
196-
if (!aDebugLevel) aDebugLevel = 1;
196+
/* if (!aDebugLevel) aDebugLevel = 1;
197197
198198
var prefB = Cc["@mozilla.org/preferences-service;1"]
199199
.getService(Ci.nsIPrefBranch);
200200
201201
this.debugLevel = this.globalFunctions.safeGetBoolPref(prefB, "extensions.1st-setup.accounts.debuglevel", 0, true);
202202
if (aDebugLevel <= this.debugLevel) {
203203
this.globalFunctions.LOG("mivExchangeAccountManager: "+aMsg);
204-
}
204+
} */
205205
},
206206

207207
}

Diff for: interfaces/exchangeBaseItem/mivExchangeBaseItem.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1414,7 +1414,7 @@ try {
14141414
this._newMyResponseType = null;
14151415
}
14161416
else {
1417-
this.status = null;
1417+
this._status = null;
14181418
}
14191419
break;
14201420
case "X-MOZ-SEND-INVITATIONS":

Diff for: interfaces/exchangeTodo/mivExchangeTodo.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ try{
121121
this._companies.push(company);
122122
}
123123
}
124+
this._status = null;
124125
if (aItem._status) this._status = aItem._status;
125126
}
126127
catch(err){
@@ -1079,6 +1080,10 @@ catch(err){
10791080
noteStatus = "NotStarted";
10801081
}
10811082
}
1083+
else
1084+
{
1085+
noteStatus = "NotStarted";
1086+
}
10821087

10831088
if( noteStatus != "Completed" ){
10841089
var tmpObject_2 = this.XPath("/t:ExtendedProperty[t:ExtendedFieldURI/@PropertyId = '33052']");
@@ -1099,7 +1104,6 @@ catch(err){
10991104
this._calEvent.status = statusMap[this._status];
11001105

11011106
this._calEvent.setProperty("STATUS", statusMap[this._status]);
1102-
11031107
this._isCompleted = ( this._status == "Completed" );
11041108

11051109
this._calEvent.isCompleted = this._isCompleted;

0 commit comments

Comments
 (0)