Fix getAllRows() return
authorMichael M Slusarz <slusarz@curecanti.org>
Fri, 23 Oct 2009 04:08:57 +0000 (22:08 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 23 Oct 2009 05:48:06 +0000 (23:48 -0600)
imp/js/ViewPort.js

index c7ab8ea..280391b 100644 (file)
@@ -1250,7 +1250,7 @@ ViewPort_Buffer = Class.create({
 
     getAllRows: function()
     {
-        return this.rowsToUIDs(this.rowlist.keys());
+        return this.rowlist.keys();
     },
 
     rowsToUIDs: function(rows)