aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp
blob: c245026caf9ed3187c77a1a8cb1f968078015c38 (plain)
1
2
3
4
5
6
7
8
9
10
//! [0]
selection = QItemSelection(topLeft, bottomRight)
//! [0]


//! [1]
selection = QItemSelection()
...
selection.select(topLeft, bottomRight)
//! [1]