Return 0 not false for pointers

This commit is contained in:
Albert Astals Cid 2012-09-08 17:22:01 +02:00
parent 7407ccb80a
commit aea2ec8f75
2 changed files with 8 additions and 8 deletions

View file

@ -67,7 +67,7 @@ QTextDocument* Converter::convert( const QString &fileName )
Document fbDocument( fileName );
if ( !fbDocument.open() ) {
emit error( fbDocument.lastErrorString(), -1 );
return false;
return 0;
}
mTextDocument = new QTextDocument;
@ -97,7 +97,7 @@ QTextDocument* Converter::convert( const QString &fileName )
if ( documentElement.tagName() != QLatin1String( "FictionBook" ) ) {
emit error( i18n( "Document is not a valid FictionBook" ), -1 );
delete mCursor;
return false;
return 0;
}
/**
@ -108,7 +108,7 @@ QTextDocument* Converter::convert( const QString &fileName )
if ( element.tagName() == QLatin1String( "binary" ) ) {
if ( !convertBinary( element ) ) {
delete mCursor;
return false;
return 0;
}
}
@ -123,7 +123,7 @@ QTextDocument* Converter::convert( const QString &fileName )
if ( element.tagName() == QLatin1String( "description" ) ) {
if ( !convertDescription( element ) ) {
delete mCursor;
return false;
return 0;
}
} else if ( element.tagName() == QLatin1String( "body" ) ) {
if ( !mTitleInfo->mCoverPage.isNull() ) {
@ -165,7 +165,7 @@ QTextDocument* Converter::convert( const QString &fileName )
if ( !convertBody( element ) ) {
delete mCursor;
return false;
return 0;
}
}

View file

@ -96,7 +96,7 @@ QTextDocument* Converter::convert( const QString &fileName )
if ( !document.setContent( &source, &reader, &errorMsg ) ) {
emit error( i18n( "Invalid XML document: %1", errorMsg ), -1 );
delete mCursor;
return false;
return 0;
}
mStyleInformation = new StyleInformation();
@ -109,7 +109,7 @@ QTextDocument* Converter::convert( const QString &fileName )
if ( !styleParser.parse() ) {
emit error( i18n( "Unable to read style information" ), -1 );
delete mCursor;
return false;
return 0;
}
/**
@ -156,7 +156,7 @@ QTextDocument* Converter::convert( const QString &fileName )
if ( !convertBody( element ) ) {
emit error( i18n( "Unable to convert document content" ), -1 );
delete mCursor;
return false;
return 0;
}
}