source: trunk/doc/src/snippets/code/doc_src_objecttrees.qdoc@ 5

Last change on this file since 5 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 215 bytes
Line 
1//![0]
2int main()
3{
4 QWidget window;
5 QPushButton quit("Quit", &window);
6 ...
7}
8//![0]
9
10
11//![1]
12int main()
13{
14 QPushButton quit("Quit");
15 QWidget window;
16
17 quit.setParent(&window);
18 ...
19}
20//![1]
Note: See TracBrowser for help on using the repository browser.