Bug 725668 - [New Tab Page] Typo in NewTabUtils.jsm - undefined variable; r=dao

This commit is contained in:
Tim Taubert 2012-02-09 17:41:11 +01:00
Родитель f3ab1649e7
Коммит e952c55717
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -172,7 +172,7 @@ PrivateBrowsingStorage.prototype = {
* Clears the storage and removes all values.
*/
clear: function PrivateBrowsingStorage_clear() {
this._data.listkeys().forEach(function (akey) {
this._data.listkeys().forEach(function (aKey) {
this._data.del(aKey);
}, this);
}