Update connection of modified signals of entries when a parent group changes database.

This commit is contained in:
Florian Geyer 2012-04-18 15:16:38 +02:00 committed by Felix Geyer
parent ec3cca1f77
commit d85e5d7560
2 changed files with 13 additions and 1 deletions

View file

@ -71,6 +71,11 @@ void TestModified::testSignals()
QCOMPARE(spyModified.count(), spyCount);
QCOMPARE(spyModified2.count(), spyCount2);
entry1->setTitle("test");
spyCount2++;
QCOMPARE(spyModified.count(), spyCount);
QCOMPARE(spyModified2.count(), spyCount2);
QPointer<Entry> entry2 = new Entry();
entry2->setGroup(g2);
spyCount++;