[gnome-shell/wip/paging-release2: 4/20] iconGrid, searchDisplay: Refactor childrenInRow to columnsForWidth



commit 73bc7852055943019f76a8ea8ceeb5bd6d54355b
Author: Carlos Soriano <carlos soriano89 gmail com>
Date:   Thu Aug 22 23:27:05 2013 +0200

    iconGrid, searchDisplay: Refactor childrenInRow to columnsForWidth
    
    Since the parameter of the function is the width, reflect that in
    the function name. Also, since we are counting columns, not only
    children for each row, reflect that in the function name also.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=706081

 js/ui/iconGrid.js      |    2 +-
 js/ui/searchDisplay.js |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/iconGrid.js b/js/ui/iconGrid.js
index 3c9bee8..3b7c9c6 100644
--- a/js/ui/iconGrid.js
+++ b/js/ui/iconGrid.js
@@ -334,7 +334,7 @@ const IconGrid = new Lang.Class({
         return childBox;
     },
 
-    childrenInRow: function(rowWidth) {
+    columnsForWidth: function(rowWidth) {
         return this._computeLayout(rowWidth)[0];
     },
 
diff --git a/js/ui/searchDisplay.js b/js/ui/searchDisplay.js
index 2177874..9d47e44 100644
--- a/js/ui/searchDisplay.js
+++ b/js/ui/searchDisplay.js
@@ -320,7 +320,7 @@ const GridSearchResults = new Lang.Class({
     },
 
     _getMaxDisplayedResults: function() {
-        return this._grid.childrenInRow(this._bin.width) * this._grid.getRowLimit();
+        return this._grid.columnsForWidth(this._bin.width) * this._grid.getRowLimit();
     },
 
     _renderResults: function(metas) {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]