diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:30:47 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:30:47 -0600 |
commit | cc74f360bb40da3d79f58048f8e8611804980aa6 (patch) | |
tree | c4385d2c16b904757b1c8bb998a4aec6993373f7 /kioslave/man/kio_man.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/man/kio_man.cpp')
-rw-r--r-- | kioslave/man/kio_man.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kioslave/man/kio_man.cpp b/kioslave/man/kio_man.cpp index cc7ac770b..1fd81de8d 100644 --- a/kioslave/man/kio_man.cpp +++ b/kioslave/man/kio_man.cpp @@ -46,7 +46,7 @@ #include <kfilterbase.h> #include <kfilterdev.h> -using namespace KIO; +using namespace TDEIO; MANProtocol *MANProtocol::_self = 0; @@ -649,7 +649,7 @@ void MANProtocol::stat( const KURL& url) if (!parseUrl(url.path(), title, section)) { - error(KIO::ERR_MALFORMED_URL, url.url()); + error(TDEIO::ERR_MALFORMED_URL, url.url()); return; } @@ -1485,7 +1485,7 @@ void MANProtocol::listDir(const KURL &url) TQString section; if ( !parseUrl(url.path(), title, section) ) { - error( KIO::ERR_MALFORMED_URL, url.url() ); + error( TDEIO::ERR_MALFORMED_URL, url.url() ); return; } @@ -1495,7 +1495,7 @@ void MANProtocol::listDir(const KURL &url) UDSEntry uds_entry; UDSAtom uds_atom; - uds_atom.m_uds = KIO::UDS_NAME; // we only do names... + uds_atom.m_uds = TDEIO::UDS_NAME; // we only do names... uds_entry.append( uds_atom ); TQStringList::Iterator it = list.begin(); |