diff options
author | Franck Bettinger <bettingf@cs.man.ac.uk> | 2002-09-12 15:37:16 (GMT) |
---|---|---|
committer | Franck Bettinger <bettingf@cs.man.ac.uk> | 2002-09-12 15:37:16 (GMT) |
commit | 6b9d82f41d6fcfa6661c4afd0eb22e0bddc64eb8 (patch) | |
tree | f9ee4dbecc53ab995cb4554d4668de01db2dae9c /Tests/Wrapping/qtwrappingmain.cxx | |
parent | 32b398e55b4d898f5e50fe113255a16ba1e2d61d (diff) | |
download | CMake-6b9d82f41d6fcfa6661c4afd0eb22e0bddc64eb8.zip CMake-6b9d82f41d6fcfa6661c4afd0eb22e0bddc64eb8.tar.gz CMake-6b9d82f41d6fcfa6661c4afd0eb22e0bddc64eb8.tar.bz2 |
corrected test for QTWrapUI
Diffstat (limited to 'Tests/Wrapping/qtwrappingmain.cxx')
-rw-r--r-- | Tests/Wrapping/qtwrappingmain.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Tests/Wrapping/qtwrappingmain.cxx b/Tests/Wrapping/qtwrappingmain.cxx index bf67800..81ddaf4 100644 --- a/Tests/Wrapping/qtwrappingmain.cxx +++ b/Tests/Wrapping/qtwrappingmain.cxx @@ -8,8 +8,6 @@ QApplication app(argc,argv); qtwrapping qtw; app.setMainWidget(&qtw); -qtw.show(); -int ret=app.exec(); -return ret; +return 0; } |