diff options
author | Marius Kintel <marius@kintel.net> | 2011-10-31 22:53:53 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-10-31 22:53:53 (GMT) |
commit | 025eca84e74fd88db4d920083f17c3716a2ca5b3 (patch) | |
tree | 17449b478585efa71ce7b999d7c7b752b9a578ce | |
parent | e6ec07a08d15c8ca0ecf6ad4a66429285df3fef7 (diff) |
Pass flag to QApplication to tell it we're a cmd-line tool
-rw-r--r-- | tests/csgtestcore.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/csgtestcore.cc b/tests/csgtestcore.cc index 6c3a7d0..2390f06 100644 --- a/tests/csgtestcore.cc +++ b/tests/csgtestcore.cc @@ -80,7 +80,7 @@ int csgtestcore(int argc, char *argv[], test_type_e test_type) initialize_builtin_functions(); initialize_builtin_modules(); - QApplication app(argc, argv); + QApplication app(argc, argv, false); QDir original_path = QDir::current(); |