workspace: fix typo in removeThumbnails.

https://bugzilla.gnome.org/show_bug.cgi?id=684869
This commit is contained in:
Tim Lunn 2012-09-26 22:24:48 +10:00 committed by Jasper St. Pierre
parent 11299d9913
commit 046067565a
2 changed files with 2 additions and 2 deletions

View File

@ -783,7 +783,7 @@ const ThumbnailsBox = new Lang.Class({
this._indicator.raise_top(); this._indicator.raise_top();
}, },
removeThumbmails: function(start, count) { removeThumbnails: function(start, count) {
let currentPos = 0; let currentPos = 0;
for (let k = 0; k < this._thumbnails.length; k++) { for (let k = 0; k < this._thumbnails.length; k++) {
let thumbnail = this._thumbnails[k]; let thumbnail = this._thumbnails[k];

View File

@ -968,7 +968,7 @@ const WorkspacesDisplay = new Lang.Class({
} }
} }
this._thumbnailsBox.removeThumbmails(removedIndex, removedNum); this._thumbnailsBox.removeThumbnails(removedIndex, removedNum);
} }
for (let i = 0; i < this._workspacesViews.length; i++) for (let i = 0; i < this._workspacesViews.length; i++)