Skip to content

Commit

Permalink
remove redundant argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Patryk Milinowski committed Jul 24, 2024
1 parent a15620b commit 2ca8fd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/class/qxl/datagrid/test/ui/DataGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ qx.Class.define("qxl.datagrid.test.ui.DataGrid", {
};
let sizeCalculator = new qxl.datagrid.ui.GridSizeCalculator(columns, styling, widgetSizeSource);
sizeCalculator.setAvailableSize(400, 200, 1, 1);
let headerWidgetFactory = new qxl.datagrid.ui.factory.HeaderWidgetFactory(columns, "qxl-datagrid-header-cell");
let headerWidgetFactory = new qxl.datagrid.ui.factory.HeaderWidgetFactory(columns);
let header = new qxl.datagrid.ui.HeaderRows(sizeCalculator, headerWidgetFactory, dataSource);
let paneWidgetFactory = new qxl.datagrid.ui.factory.SimpleWidgetFactory(columns, "qxl-datagrid-cell");
let widgetPane = new qxl.datagrid.ui.WidgetPane(sizeCalculator, paneWidgetFactory, dataSource, new qxl.datagrid.ui.SelectionManager());
Expand Down

0 comments on commit 2ca8fd9

Please sign in to comment.