summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/qlistbox.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/qlistbox.3qt')
-rw-r--r--doc/man/man3/qlistbox.3qt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/man3/qlistbox.3qt b/doc/man/man3/qlistbox.3qt
index 7608d627..b44858d3 100644
--- a/doc/man/man3/qlistbox.3qt
+++ b/doc/man/man3/qlistbox.3qt
@@ -423,7 +423,7 @@ There are a variety of selection modes described in the QListBox::SelectionMode
.PP
Because QListBox offers multiple selection it must display keyboard focus and selection state separately. Therefore there are functions both to set the selection state of an item, i.e. setSelected(), and to set which item displays keyboard focus, i.e. setCurrentItem().
.PP
-The list box normally arranges its items in a single column and adds a vertical scroll bar if retquired. It is possible to have a different fixed number of columns (setColumnMode()), or as many columns as will fit in the list box's assigned screen space (setColumnMode(FitToWidth)), or to have a fixed number of rows (setRowMode()) or as many rows as will fit in the list box's assigned screen space (setRowMode(FitToHeight)). In all these cases QListBox will add scroll bars, as appropriate, in at least one direction.
+The list box normally arranges its items in a single column and adds a vertical scroll bar if required. It is possible to have a different fixed number of columns (setColumnMode()), or as many columns as will fit in the list box's assigned screen space (setColumnMode(FitToWidth)), or to have a fixed number of rows (setRowMode()) or as many rows as will fit in the list box's assigned screen space (setRowMode(FitToHeight)). In all these cases QListBox will add scroll bars, as appropriate, in at least one direction.
.PP
If multiple rows are used, each row can be as high as necessary (the normal setting), or you can request that all items will have the same height by calling setVariableHeight(FALSE). The same applies to a column's width, see setVariableWidth().
.PP
@@ -467,7 +467,7 @@ This enum type is used to specify how QListBox lays out its rows and columns.
.TP
\fCQListBox::FitToHeight\fR - There are as many rows as will fit on-screen.
.TP
-\fCQListBox::Variable\fR - There are as many rows as are retquired by the column mode. (Or as many columns as retquired by the row mode.)
+\fCQListBox::Variable\fR - There are as many rows as are required by the column mode. (Or as many columns as required by the row mode.)
.PP
Example: When you call setRowMode( FitToHeight ), columnMode() automatically becomes Variable to accommodate the row mode you've set.
.SH "QListBox::SelectionMode"