summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp
blob: 9302fa6e9507f11013196261995cabb8587dd5d0 (plain)
1
2
3
4
5
6
7
8
9
10
//! [0]
QItemSelection *selection = new QItemSelection(topLeft, bottomRight);
//! [0]


//! [1]
QItemSelection *selection = new QItemSelection();
...
selection->select(topLeft, bottomRight);
//! [1]