From: Casper van Donderen Date: Wed, 30 May 2012 12:46:28 +0000 (+0200) Subject: QDoc: Remove fatal exit when not finding an index directory. X-Git-Tag: 071012110112~709 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=62fc26df0d0a373daf0333942305238c127da982;p=profile%2Fivi%2Fqtbase.git QDoc: Remove fatal exit when not finding an index directory. QDoc would exit with exit code 1 when an index directory is not found, this behaviour was probably a bit too strict. Change-Id: If62fe1aeac4392002fa7419f6abcb62ed41c2beb Reviewed-by: Martin Smith --- diff --git a/src/tools/qdoc/main.cpp b/src/tools/qdoc/main.cpp index f33b95c..0ee0d18 100644 --- a/src/tools/qdoc/main.cpp +++ b/src/tools/qdoc/main.cpp @@ -503,7 +503,6 @@ int main(int argc, char **argv) } else { qDebug() << "Cannot find index directory" << argv[i]; - return EXIT_FAILURE; } i++; }