diff options
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); |