From 6742720b6d597e9b82c7f9aa258068650b77bdeb Mon Sep 17 00:00:00 2001 From: GiWoong Kim Date: Thu, 10 Sep 2015 20:38:12 +0900 Subject: [PATCH] controller: fix wrong condition Change-Id: Ifaee282a00ff9c15b9ba4bfc05d0c9036f6556d9 Signed-off-by: GiWoong Kim (cherry picked from commit 0db5e574dc7f4a9f98fd4fd57daf8bafb5aca893) --- tizen/src/ui/qt5_supplement.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tizen/src/ui/qt5_supplement.cpp b/tizen/src/ui/qt5_supplement.cpp index 59a1e83..1ac010c 100644 --- a/tizen/src/ui/qt5_supplement.cpp +++ b/tizen/src/ui/qt5_supplement.cpp @@ -518,7 +518,7 @@ void loadConFormFromXML(QFile *file, UIInformation *uiInfo/* out */) xml.clear(); file->close(); - if (hasError == false) { + if (hasError == true) { qFatal("%s %s%s", MSG_INVALID_XML_FORMAT, MSG_CHECK_PATH, qPrintable(fileInfo.absoluteFilePath())); return; -- 2.7.4