aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_qt3support_widgets_q3header.cpp
blob: 684d182125e3f107d8869ab1655f790dbcced54b (plain)
1
2
3
4
5
6
//! [0]
// Allow resizing of all current and future sections
header->setResizeEnabled(true);
// Disable resizing of section 3, (the fourth section added)
header->setResizeEnabled(false, 3);
//! [0]