summaryrefslogtreecommitdiffstats
path: root/installerbuilder
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@nokia.com>2012-01-24 15:04:14 +0100
committerTim Jenssen <tim.jenssen@nokia.com>2012-01-24 17:47:13 +0100
commit0cc66d16f426264085b24e8dee10e9dc00f482a8 (patch)
treefaa7a1d9a245d5bfa6bf59be2825de4fe4ba53c4 /installerbuilder
parente1882210f822f7b17590196ca0e8368470e049c6 (diff)
deactivate error message in qdoc register case
Change-Id: Iae67eb407276128d7ca1fda3cd683b8804946e58 Reviewed-by: Karsten Heimrich <karsten.heimrich@nokia.com> Reviewed-by: Alexander Lenhardt <alexander.lenhardt@nokia.com>
Diffstat (limited to 'installerbuilder')
-rw-r--r--installerbuilder/libinstaller/registerdocumentationoperation.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/installerbuilder/libinstaller/registerdocumentationoperation.cpp b/installerbuilder/libinstaller/registerdocumentationoperation.cpp
index a0ec54f1b..db9bf0391 100644
--- a/installerbuilder/libinstaller/registerdocumentationoperation.cpp
+++ b/installerbuilder/libinstaller/registerdocumentationoperation.cpp
@@ -112,9 +112,10 @@ bool RegisterDocumentationOperation::performOperation()
oldData.append(QLatin1Char(';'));
const QString newData = oldData + QFileInfo(helpFile).absoluteFilePath();
if (!help.setCustomValue(QLatin1String("AddedDocs"), newData)) {
- setError(UserDefinedError);
- setErrorString(help.error());
- return false;
+ qWarning() << "Can't register doc file:" << helpFile << help.error();
+// setError(UserDefinedError);
+// setErrorString(help.error());
+// return false;
}
return true;
}