From: GiWoong Kim Date: Thu, 10 Sep 2015 11:38:12 +0000 (+0900) Subject: controller: fix wrong condition X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~243 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6742720b6d597e9b82c7f9aa258068650b77bdeb;p=sdk%2Femulator%2Fqemu.git controller: fix wrong condition Change-Id: Ifaee282a00ff9c15b9ba4bfc05d0c9036f6556d9 Signed-off-by: GiWoong Kim (cherry picked from commit 0db5e574dc7f4a9f98fd4fd57daf8bafb5aca893) --- diff --git a/tizen/src/ui/qt5_supplement.cpp b/tizen/src/ui/qt5_supplement.cpp index 59a1e83bdf..1ac010c092 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;