diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | ff8c66f117613688a0979d2296cbf6c778136419 (patch) | |
tree | e08685a8a074de43b2d5a890eb2038575ddbd119 /src/gvcore/documentloadedimpl.cpp | |
parent | 362662842b9a5b2c51d442b69b69c06ddb60994c (diff) | |
download | gwenview-ff8c66f117613688a0979d2296cbf6c778136419.tar.gz gwenview-ff8c66f117613688a0979d2296cbf6c778136419.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gwenview@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gvcore/documentloadedimpl.cpp')
-rw-r--r-- | src/gvcore/documentloadedimpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gvcore/documentloadedimpl.cpp b/src/gvcore/documentloadedimpl.cpp index 35a07b0..35f9441 100644 --- a/src/gvcore/documentloadedimpl.cpp +++ b/src/gvcore/documentloadedimpl.cpp @@ -79,7 +79,7 @@ void DocumentLoadedImpl::transform(ImageUtils::Orientation orientation) { TQString DocumentLoadedImpl::save(const KURL& _url, const TQCString& format) const { - if (!TQImageIO::outputFormats().tqcontains(format)) { + if (!TQImageIO::outputFormats().contains(format)) { return i18n("Gwenview cannot write files in this format."); } @@ -105,7 +105,7 @@ TQString DocumentLoadedImpl::save(const KURL& _url, const TQCString& format) con path=info.dirPath(true) + '/' + path; } path=TQDir::cleanDirPath(path); - if (links.tqcontains(path)) { + if (links.contains(path)) { return i18n("This is a circular link."); } info.setFile(path); |