diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 | 
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 | 
| commit | cc74f360bb40da3d79f58048f8e8611804980aa6 (patch) | |
| tree | c4385d2c16b904757b1c8bb998a4aec6993373f7 /kioslave/system/kio_system.cpp | |
| parent | 79b21d47bce1ee428affc97534cd8b257232a871 (diff) | |
| download | tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip | |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kioslave/system/kio_system.cpp')
| -rw-r--r-- | kioslave/system/kio_system.cpp | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/kioslave/system/kio_system.cpp b/kioslave/system/kio_system.cpp index c64706d8d..61f724093 100644 --- a/kioslave/system/kio_system.cpp +++ b/kioslave/system/kio_system.cpp @@ -73,7 +73,7 @@ bool SystemProtocol::rewriteURL(const KURL &url, KURL &newUrl)  	if ( !m_impl.parseURL(url, name, path) )  	{ -		error(KIO::ERR_MALFORMED_URL, url.prettyURL()); +		error(TDEIO::ERR_MALFORMED_URL, url.prettyURL());  		return false;  	} @@ -95,7 +95,7 @@ void SystemProtocol::stat(const KURL &url)  	if ( path.isEmpty() || path == "/" )  	{  		// The root is "virtual" - it's not a single physical directory -		KIO::UDSEntry entry; +		TDEIO::UDSEntry entry;  		m_impl.createTopLevelEntry( entry );  		statEntry( entry );  		finished(); @@ -107,13 +107,13 @@ void SystemProtocol::stat(const KURL &url)  	if ( !ok )  	{ -		error(KIO::ERR_MALFORMED_URL, url.prettyURL()); +		error(TDEIO::ERR_MALFORMED_URL, url.prettyURL());  		return;  	}  	if( path.isEmpty() )  	{ -		KIO::UDSEntry entry; +		TDEIO::UDSEntry entry;  		if ( m_impl.statByName(name, entry) )  		{ @@ -122,7 +122,7 @@ void SystemProtocol::stat(const KURL &url)  		}  		else  		{ -			error(KIO::ERR_DOES_NOT_EXIST, url.prettyURL()); +			error(TDEIO::ERR_DOES_NOT_EXIST, url.prettyURL());  		}  	}  	else @@ -146,7 +146,7 @@ void SystemProtocol::listDir(const KURL &url)  	if ( !ok )  	{ -		error(KIO::ERR_MALFORMED_URL, url.prettyURL()); +		error(TDEIO::ERR_MALFORMED_URL, url.prettyURL());  		return;  	} @@ -155,9 +155,9 @@ void SystemProtocol::listDir(const KURL &url)  void SystemProtocol::listRoot()  { -	KIO::UDSEntry entry; +	TDEIO::UDSEntry entry; -	KIO::UDSEntryList system_entries; +	TDEIO::UDSEntryList system_entries;  	bool ok = m_impl.listRoot(system_entries);  	if (!ok) @@ -171,8 +171,8 @@ void SystemProtocol::listRoot()  	m_impl.createTopLevelEntry(entry);  	listEntry(entry, false); -	KIO::UDSEntryListIterator it = system_entries.begin(); -	KIO::UDSEntryListIterator end = system_entries.end(); +	TDEIO::UDSEntryListIterator it = system_entries.begin(); +	TDEIO::UDSEntryListIterator end = system_entries.end();  	for(; it!=end; ++it)  	{ | 
