Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2012-04-14 19:55:19 +0400
committerFelix Geyer <debfx@fobos.de>2012-04-14 19:55:19 +0400
commita8b3771f15c972a63a3f103c5fd38687e940498e (patch)
treef09755463908d1ea844728dc8ba5197195aa757d /tests/modeltest.cpp
parent849f83e03001ed61478be5253dd36d79d5b32dea (diff)
Disable some qDebug() noise in ModelTest.
Diffstat (limited to 'tests/modeltest.cpp')
-rw-r--r--tests/modeltest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/modeltest.cpp b/tests/modeltest.cpp
index 9e173b40f..a55bb43a5 100644
--- a/tests/modeltest.cpp
+++ b/tests/modeltest.cpp
@@ -536,7 +536,7 @@ void ModelTest::layoutChanged()
*/
void ModelTest::rowsAboutToBeRemoved ( const QModelIndex &parent, int start, int end )
{
-qDebug() << "ratbr" << parent << start << end;
+//qDebug() << "ratbr" << parent << start << end;
Changing c;
c.parent = parent;
c.oldSize = model->rowCount ( parent );
@@ -552,7 +552,7 @@ qDebug() << "ratbr" << parent << start << end;
*/
void ModelTest::rowsRemoved ( const QModelIndex & parent, int start, int end )
{
- qDebug() << "rr" << parent << start << end;
+// qDebug() << "rr" << parent << start << end;
Changing c = remove.pop();
QVERIFY( c.parent == parent );
QVERIFY( c.oldSize - ( end - start + 1 ) == model->rowCount ( parent ) );