diff options
author | Christian Kandeler <christian.kandeler@digia.com> | 2013-04-19 11:04:43 +0200 |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@digia.com> | 2013-05-23 15:32:46 +0200 |
commit | 64c9bf5e3696834c5b865205e92cb4da675c7c97 (patch) | |
tree | 8130cecae3d0c8a486d5aeb7192301d568513d90 /tests | |
parent | 03f6ea7f86088399879aea6ee93d4e3a09674dcb (diff) | |
download | qbs-64c9bf5e3696834c5b865205e92cb4da675c7c97.tar.gz |
Use private implementation in API classes.
While we do not promise a stable ABI at the moment,
this is conceptually correct and has to be done sooner or
later, with increasing effort the longer we delay it.
Change-Id: Icc98443974e54d377167480ace601db4981ed43c
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/cmdlineparser/tst_cmdlineparser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/cmdlineparser/tst_cmdlineparser.cpp b/tests/auto/cmdlineparser/tst_cmdlineparser.cpp index cccbb636b..41a09d22a 100644 --- a/tests/auto/cmdlineparser/tst_cmdlineparser.cpp +++ b/tests/auto/cmdlineparser/tst_cmdlineparser.cpp @@ -70,8 +70,8 @@ private slots: QCOMPARE(ConsoleLogger::instance().logSink()->logLevel(), LoggerTrace); QCOMPARE(parser.command(), BuildCommandType); QCOMPARE(parser.products(), QStringList() << "blubb"); - QCOMPARE(parser.buildOptions().changedFiles.count(), 2); - QVERIFY(parser.buildOptions().keepGoing); + QCOMPARE(parser.buildOptions().changedFiles().count(), 2); + QVERIFY(parser.buildOptions().keepGoing()); QVERIFY(parser.force()); QVERIFY(!parser.logTime()); QCOMPARE(parser.buildConfigurations().count(), 1); |