diff options
Diffstat (limited to 'src/gvcore/documentloadedimpl.cpp')
-rw-r--r-- | src/gvcore/documentloadedimpl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gvcore/documentloadedimpl.cpp b/src/gvcore/documentloadedimpl.cpp index 35f9441..aacea94 100644 --- a/src/gvcore/documentloadedimpl.cpp +++ b/src/gvcore/documentloadedimpl.cpp @@ -130,11 +130,11 @@ TQString DocumentLoadedImpl::save(const KURL& _url, const TQCString& format) con } } else { - TQFileInfo tqparent=TQFileInfo(info.dirPath()); - if (!tqparent.isWritable()) { + TQFileInfo parent=TQFileInfo(info.dirPath()); + if (!parent.isWritable()) { return i18n("The %1 folder is read-only.") - .tqarg(tqparent.filePath()); + .tqarg(parent.filePath()); } } } |