Skip to content

Commit

Permalink
bump-version
Browse files Browse the repository at this point in the history
  • Loading branch information
bavincen committed May 17, 2016
2 parents 78377ee + a641199 commit eaa1c2d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
1 change: 0 additions & 1 deletion chrome/content/exchService-common-sets.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ newOpenEventDialog(calendarItem, calendar, mode, callback, job, initialDate);
}

function newOpenEventDialog(calendarItem, calendar, mode, callback, job, initialDate) {
calendarItem = calendarItem.clone();
let dlg = cal.findItemWindow(calendarItem);
if (dlg) {
dlg.focus();
Expand Down
5 changes: 2 additions & 3 deletions install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@

<Description about="urn:mozilla:install-manifest">
<em:id>[email protected]</em:id>
<em:version>3.8.0-beta2</em:version>

<em:version>3.8.0-beta3</em:version>
<em:targetApplication>
<Description>
<!-- Thunderbird -->
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
<em:minVersion>12.0</em:minVersion>
<em:maxVersion>38.*</em:maxVersion>
<em:maxVersion>45.*</em:maxVersion>
</Description>
</em:targetApplication>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,15 +193,15 @@ mivExchangeAccountManager.prototype = {
logInfo: function _logInfo(aMsg, aDebugLevel)
{
return;
if (!aDebugLevel) aDebugLevel = 1;
/* if (!aDebugLevel) aDebugLevel = 1;
var prefB = Cc["@mozilla.org/preferences-service;1"]
.getService(Ci.nsIPrefBranch);
this.debugLevel = this.globalFunctions.safeGetBoolPref(prefB, "extensions.1st-setup.accounts.debuglevel", 0, true);
if (aDebugLevel <= this.debugLevel) {
this.globalFunctions.LOG("mivExchangeAccountManager: "+aMsg);
}
} */
},

}
Expand Down
2 changes: 1 addition & 1 deletion interfaces/exchangeBaseItem/mivExchangeBaseItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -1414,7 +1414,7 @@ try {
this._newMyResponseType = null;
}
else {
this.status = null;
this._status = null;
}
break;
case "X-MOZ-SEND-INVITATIONS":
Expand Down
6 changes: 5 additions & 1 deletion interfaces/exchangeTodo/mivExchangeTodo.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ try{
this._companies.push(company);
}
}
this._status = null;
if (aItem._status) this._status = aItem._status;
}
catch(err){
Expand Down Expand Up @@ -1079,6 +1080,10 @@ catch(err){
noteStatus = "NotStarted";
}
}
else
{
noteStatus = "NotStarted";
}

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

this._calEvent.setProperty("STATUS", statusMap[this._status]);

this._isCompleted = ( this._status == "Completed" );

this._calEvent.isCompleted = this._isCompleted;
Expand Down

0 comments on commit eaa1c2d

Please sign in to comment.