1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-10 15:54:17 +01:00

Fixed compilation warning caused by wrong parameter passed to function.

This commit is contained in:
dan
2001-05-17 23:15:19 +00:00
parent 22ae4f5a3c
commit a4486f0cd9

View File

@@ -1079,7 +1079,7 @@ void WMReloadTableView(WMTableView *table)
if (rows != table->rows) {
table->rows = rows;
handleResize(table->delegate, table->view);
handleResize(table->view->delegate, table->view);
} else {
repaintTable(table);
}
@@ -1229,5 +1229,5 @@ static void rearrangeHeader(WMTableView *table)
table->tableWidth = width + 1;
handleResize(table->delegate, table->view);
handleResize(table->view->delegate, table->view);
}