summaryrefslogtreecommitdiff
path: root/examples/gui/gridtest/gridtest.lpr
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gui/gridtest/gridtest.lpr')
-rw-r--r--examples/gui/gridtest/gridtest.lpr4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/gui/gridtest/gridtest.lpr b/examples/gui/gridtest/gridtest.lpr
index 88bc77f1..d85bad61 100644
--- a/examples/gui/gridtest/gridtest.lpr
+++ b/examples/gui/gridtest/gridtest.lpr
@@ -107,11 +107,11 @@ begin
tsTab2 := pagecontrol.AppendTabSheet('String Grid');
stringgrid := TfpgStringGrid.Create(tsTab2);
stringgrid.SetPosition(10, 10, Width-50, 250);
- // change row and column count to something different that the default
+ // change row and column count to something different than the default
stringgrid.ColumnCount := 2;
stringgrid.RowCount := 3;
// add and change a column
- stringgrid.AddColumn('Extra', 100);
+ stringgrid.AddColumn('Extra (col3)', 100);
stringgrid.ColumnWidth[3] := 150;
// changes header text in different ways
stringgrid.ColumnTitle[1] := 'Column 1';