diff options
author | Slávek Banko <[email protected]> | 2013-09-03 20:02:20 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-09-03 20:59:52 +0200 |
commit | 78cc506bbab7c8fc2f8b4f6cb183b4ab157b762b (patch) | |
tree | 073fd8dfc96771e4fc8f8bff5b97fccbf9f7f91c /kamera/tdeioslave/kamera.cpp | |
parent | 580e97ebe258cc3c6745aa49fbc6a423de32c9ba (diff) | |
download | tdegraphics-78cc506bbab7c8fc2f8b4f6cb183b4ab157b762b.tar.gz tdegraphics-78cc506bbab7c8fc2f8b4f6cb183b4ab157b762b.zip |
Additional k => tde renaming and fixes
Diffstat (limited to 'kamera/tdeioslave/kamera.cpp')
-rw-r--r-- | kamera/tdeioslave/kamera.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kamera/tdeioslave/kamera.cpp b/kamera/tdeioslave/kamera.cpp index 88228418..96d65e9a 100644 --- a/kamera/tdeioslave/kamera.cpp +++ b/kamera/tdeioslave/kamera.cpp @@ -212,7 +212,7 @@ static TQString fix_foldername(TQString ofolder) { return folder; } -// The KIO slave "get" function (starts a download from the camera) +// The TDEIO slave "get" function (starts a download from the camera) // The actual returning of the data is done in the frontend callback functions. void KameraProtocol::get(const KURL &url) { @@ -368,7 +368,7 @@ void KameraProtocol::get(const KURL &url) m_file = NULL; } -// The KIO slave "stat" function. +// The TDEIO slave "stat" function. void KameraProtocol::stat(const KURL &url) { kdDebug(7123) << "stat(\"" << url.path() << "\")" << endl; @@ -495,7 +495,7 @@ void KameraProtocol::statRegular(const KURL &url) finished(); } -// The KIO slave "del" function. +// The TDEIO slave "del" function. void KameraProtocol::del(const KURL &url, bool isFile) { kdDebug(7123) << "KameraProtocol::del(" << url.path() << ")" << endl; @@ -523,7 +523,7 @@ void KameraProtocol::del(const KURL &url, bool isFile) } } -// The KIO slave "listDir" function. +// The TDEIO slave "listDir" function. void KameraProtocol::listDir(const KURL &url) { kdDebug(7123) << "KameraProtocol::listDir(" << url.path() << ")" << endl; @@ -975,7 +975,7 @@ void frontendProgressUpdate( KameraProtocol *object = (KameraProtocol*)data; // This code will get the last chunk of data retrieved from the - // camera and pass it to KIO, to allow progressive display + // camera and pass it to TDEIO, to allow progressive display // of the downloaded photo. const char *fileData = NULL; |