diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:29:45 -0600 | 
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:29:45 -0600 | 
| commit | 2b7143e0539396c75306f6e78bf0a5641ed1acfc (patch) | |
| tree | db4ea3490b6703f775f11931c6e7c22f943816bd /src/gvcore/documentloadedimpl.cpp | |
| parent | ff1cff2a1e9b7860d4d3779cf20bf79afbe52470 (diff) | |
| download | gwenview-2b7143e0539396c75306f6e78bf0a5641ed1acfc.tar.gz gwenview-2b7143e0539396c75306f6e78bf0a5641ed1acfc.zip | |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/gvcore/documentloadedimpl.cpp')
| -rw-r--r-- | src/gvcore/documentloadedimpl.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/src/gvcore/documentloadedimpl.cpp b/src/gvcore/documentloadedimpl.cpp index aacea94..31baec0 100644 --- a/src/gvcore/documentloadedimpl.cpp +++ b/src/gvcore/documentloadedimpl.cpp @@ -134,7 +134,7 @@ TQString DocumentLoadedImpl::save(const KURL& _url, const TQCString& format) con  			if (!parent.isWritable()) {  				return  					i18n("The %1 folder is read-only.") -					.tqarg(parent.filePath()); +					.arg(parent.filePath());  			}  		}  	} @@ -152,7 +152,7 @@ TQString DocumentLoadedImpl::save(const KURL& _url, const TQCString& format) con  	if (tmp.status()!=0) {  		TQString reason( strerror(tmp.status()) );  		return i18n("Could not create a temporary file.\nReason: %1.") -			.tqarg(reason); +			.arg(reason);  	}  	TQFile* file=tmp.file();  	msg=localSave(file, format); @@ -162,7 +162,7 @@ TQString DocumentLoadedImpl::save(const KURL& _url, const TQCString& format) con  	if (tmp.status()!=0) {  		TQString reason( strerror(tmp.status()) );  		return i18n("Saving image to a temporary file failed.\nReason: %1.") -			.tqarg(reason); +			.arg(reason);  	}  	TQString tmpName=tmp.name(); @@ -172,11 +172,11 @@ TQString DocumentLoadedImpl::save(const KURL& _url, const TQCString& format) con  	// Move the tmp file to the final dest  	if (url.isLocalFile()) {  		if( ::rename( TQFile::encodeName(tmpName), TQFile::encodeName( url.path())) < 0 ) { -			return i18n("Could not write to %1.").tqarg(url.path()); +			return i18n("Could not write to %1.").arg(url.path());  		}  	} else {  		if (!KIO::NetAccess::upload(tmp.name(), url, KApplication::kApplication()->mainWidget() )) { -			return i18n("Could not upload the file to %1.").tqarg(url.prettyURL()); +			return i18n("Could not upload the file to %1.").arg(url.prettyURL());  		}  	} | 
