source:
trunk/doc/src/snippets/code/doc_src_objecttrees.qdoc@
5
Last change on this file since 5 was 2, checked in by , 16 years ago | |
---|---|
File size: 215 bytes |
Line | |
---|---|
1 | //![0] |
2 | int main() |
3 | { |
4 | QWidget window; |
5 | QPushButton quit("Quit", &window); |
6 | ... |
7 | } |
8 | //![0] |
9 | |
10 | |
11 | //![1] |
12 | int 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.