mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
kdecore: fix dumpOfferList() function
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
ec505df46a
commit
021310ba3d
1 changed files with 2 additions and 2 deletions
|
@ -74,8 +74,8 @@ void KServiceTypeTrader::applyConstraints( KService::List& lst,
|
|||
static void dumpOfferList( const KServiceOfferList& offers )
|
||||
{
|
||||
kDebug(7014) << "Sorted list:";
|
||||
OfferList::Iterator itOff = offers.begin();
|
||||
for( ; itOff != offers.end(); ++itOff )
|
||||
KServiceOfferList::ConstIterator itOff = offers.constBegin();
|
||||
for( ; itOff != offers.constEnd(); ++itOff )
|
||||
kDebug(7014) << (*itOff).service()->name() << " allow-as-default=" << (*itOff).allowAsDefault() << " preference=" << (*itOff).preference();
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue