appDisplay: Add missing this

Spotted by Dan Winship <danw@gnome.org>
This commit is contained in:
Colin Walters 2011-08-11 10:34:32 -04:00
parent 44b475e746
commit f8b397a5dc

View File

@ -207,7 +207,7 @@ ViewByCategories.prototype = {
var app = this._appSystem.lookup_app_by_tree_entry(entry); var app = this._appSystem.lookup_app_by_tree_entry(entry);
appList.push(app); appList.push(app);
} else if (nextType == GMenu.TreeItemType.DIRECTORY) { } else if (nextType == GMenu.TreeItemType.DIRECTORY) {
_loadCategory(iter.get_directory(), appList); this._loadCategory(iter.get_directory(), appList);
} }
} }
}, },