diff --git a/generators/fictionbook/converter.cpp b/generators/fictionbook/converter.cpp index c7c8d3b66..9f3ec26d3 100644 --- a/generators/fictionbook/converter.cpp +++ b/generators/fictionbook/converter.cpp @@ -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; } } diff --git a/generators/ooo/converter.cpp b/generators/ooo/converter.cpp index 6371f2d66..1124e2a51 100644 --- a/generators/ooo/converter.cpp +++ b/generators/ooo/converter.cpp @@ -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; } }