| Index: Source/devtools/front_end/resources/DatabaseQueryView.js
|
| diff --git a/Source/devtools/front_end/resources/DatabaseQueryView.js b/Source/devtools/front_end/resources/DatabaseQueryView.js
|
| index 04c0a8fb5e4a7a3dafd7615c378ecf190cde101f..3b874bf8139f81f6709ced321403b8d476a9429a 100644
|
| --- a/Source/devtools/front_end/resources/DatabaseQueryView.js
|
| +++ b/Source/devtools/front_end/resources/DatabaseQueryView.js
|
| @@ -143,7 +143,7 @@ WebInspector.DatabaseQueryView.prototype = {
|
|
|
| _queryFinished: function(query, columnNames, values)
|
| {
|
| - var dataGrid = WebInspector.DataGrid.createSortableDataGrid(columnNames, values);
|
| + var dataGrid = WebInspector.SortableDataGrid.create(columnNames, values);
|
| var trimmedQuery = query.trim();
|
|
|
| if (dataGrid) {
|
|
|