From 19c822c41d0644be3f2bed9ddb86b5f996c0d023 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 20 Feb 2012 18:14:05 -0600 Subject: Fix Q_CHECK_PTR --- kghostview/kgvdocument.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kghostview') diff --git a/kghostview/kgvdocument.cpp b/kghostview/kgvdocument.cpp index bcfc4d2e..551f43c6 100644 --- a/kghostview/kgvdocument.cpp +++ b/kghostview/kgvdocument.cpp @@ -128,7 +128,7 @@ void KGVDocument::doOpenFile() || _mimetype == "application/x-pdf" ) // see bug:67474 { _tmpDSC = new KTempFile( TQString(), ".ps" ); - Q_CHECK_PTR( _tmpDSC ); + TQ_CHECK_PTR( _tmpDSC ); if( _tmpDSC->status() != 0 ) { KMessageBox::error( _part->widget(), i18n( "Could not create temporary file: %1" ) @@ -196,7 +196,7 @@ bool KGVDocument::uncompressFile() } _tmpUnzipped = new KTempFile; - Q_CHECK_PTR( _tmpUnzipped ); + TQ_CHECK_PTR( _tmpUnzipped ); if( _tmpUnzipped->status() != 0 ) { KMessageBox::error( _part->widget(), -- cgit v1.2.1