[atlantik-cvs] CVS: kdegames/atlantik/libatlantic atlantic_core.cpp,1.21,1.22
| Newsgroups | gmane.comp.kde.devel.atlantik |
|---|---|
| Message-ID | <[email protected]> |
Update of /home/kde/kdegames/atlantik/libatlantic In directory office:/tmp/cvs-serv16159 Modified Files: atlantic_core.cpp Log Message: more debug info is always good in development branches Index: atlantic_core.cpp =================================================================== RCS file: /home/kde/kdegames/atlantik/libatlantic/atlantic_core.cpp,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- atlantic_core.cpp 17 Jun 2003 18:21:28 -0000 1.21 +++ atlantic_core.cpp 17 Jun 2003 19:10:44 -0000 1.22 @@ -213,4 +213,13 @@ EstateGroup *estateGroup = 0; for (QPtrListIterator<EstateGroup> it(m_estateGroups); (estateGroup = *it) ; ++it) std::cout << "EG: " << estateGroup->name().latin1() << std::endl; + + Auction *auction = 0; + for (QPtrListIterator<Auction> it(m_auctions); (auction = *it) ; ++it) + std::cout << "A: " << QString::number(auction->auctionId()).latin1() << std::endl; + + Trade *trade = 0; + for (QPtrListIterator<Trade> it(m_trades); (trade = *it) ; ++it) + std::cout << "T: " << QString::number(trade->tradeId()).latin1() << std::endl; + }