From fbb4077812f2311e10037bf0eda77777b87be868 Mon Sep 17 00:00:00 2001 From: Carlos Soriano Date: Wed, 28 Aug 2013 19:26:21 +0200 Subject: [PATCH] appDisplay: Rename AlphabeticalView to BaseAppView Since the items are not ordered in an alphabetical way, just rename the class to be consistent. https://bugzilla.gnome.org/show_bug.cgi?id=706081 --- js/ui/appDisplay.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 77898c526..8c1d8b2ca 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -54,8 +54,8 @@ function _loadCategory(dir, view) { } }; -const AlphabeticalView = new Lang.Class({ - Name: 'AlphabeticalView', +const BaseAppView = new Lang.Class({ + Name: 'BaseAppView', Abstract: true, _init: function() { @@ -139,7 +139,7 @@ const AlphabeticalView = new Lang.Class({ } } }); -Signals.addSignalMethods(AlphabeticalView.prototype); +Signals.addSignalMethods(BaseAppView.prototype); const AllViewLayout = new Lang.Class({ Name: 'AllViewLayout', @@ -167,7 +167,7 @@ const AllViewLayout = new Lang.Class({ const AllView = new Lang.Class({ Name: 'AllView', - Extends: AlphabeticalView, + Extends: BaseAppView, _init: function() { this.parent(); @@ -560,7 +560,7 @@ const AppSearchProvider = new Lang.Class({ const FolderView = new Lang.Class({ Name: 'FolderView', - Extends: AlphabeticalView, + Extends: BaseAppView, _init: function() { this.parent();