diff options
| author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 | 
|---|---|---|
| committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 | 
| commit | fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf (patch) | |
| tree | 9eda848e56fcb862fdfdf479adeccd95b6fe387a /kioslave/system/systemimpl.cpp | |
| parent | 02f67d0e1355b79b1806746efb0f2f640e57f13d (diff) | |
| download | tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.tar.gz tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.zip | |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1212480 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kioslave/system/systemimpl.cpp')
| -rw-r--r-- | kioslave/system/systemimpl.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/kioslave/system/systemimpl.cpp b/kioslave/system/systemimpl.cpp index 67732bc8c..63171009a 100644 --- a/kioslave/system/systemimpl.cpp +++ b/kioslave/system/systemimpl.cpp @@ -62,7 +62,7 @@ bool SystemImpl::listRoot(TQValueList<KIO::UDSEntry> &list)  		for(; filename!=endf; ++filename)  		{ -			if (!names_found.tqcontains(*filename)) +			if (!names_found.contains(*filename))  			{  				entry.clear();  				createEntry(entry, *dirpath, *filename); @@ -285,7 +285,7 @@ void SystemImpl::createEntry(KIO::UDSEntry &entry,  			             const KIO::UDSEntryList &) ) );  		connect( job, TQT_SIGNAL( result(KIO::Job *) ),  		         this, TQT_SLOT( slotResult(KIO::Job *) ) ); -		tqApp->eventLoop()->enterLoop(); +		qApp->eventLoop()->enterLoop();  		if (m_lastListingEmpty) icon = empty_icon;  	} @@ -299,13 +299,13 @@ void SystemImpl::slotEntries(KIO::Job *job, const KIO::UDSEntryList &list)  	{  		job->kill(true);  		m_lastListingEmpty = false; -		tqApp->eventLoop()->exitLoop(); +		qApp->eventLoop()->exitLoop();  	}  }  void SystemImpl::slotResult(KIO::Job *)  { -	tqApp->eventLoop()->exitLoop(); +	qApp->eventLoop()->exitLoop();  } | 
