From f8b397a5dc61619d79899c3d22675a40553f5cbc Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 11 Aug 2011 10:34:32 -0400 Subject: [PATCH] appDisplay: Add missing this Spotted by Dan Winship --- js/ui/appDisplay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index a4a958765..131be18a9 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -207,7 +207,7 @@ ViewByCategories.prototype = { var app = this._appSystem.lookup_app_by_tree_entry(entry); appList.push(app); } else if (nextType == GMenu.TreeItemType.DIRECTORY) { - _loadCategory(iter.get_directory(), appList); + this._loadCategory(iter.get_directory(), appList); } } },