controller: fix wrong condition
authorGiWoong Kim <giwoong.kim@samsung.com>
Thu, 10 Sep 2015 11:38:12 +0000 (20:38 +0900)
committerSeokYeon Hwang <syeon.hwang@samsung.com>
Thu, 10 Sep 2015 12:34:14 +0000 (21:34 +0900)
Change-Id: Ifaee282a00ff9c15b9ba4bfc05d0c9036f6556d9
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
(cherry picked from commit 0db5e574dc7f4a9f98fd4fd57daf8bafb5aca893)

tizen/src/ui/qt5_supplement.cpp

index 59a1e83bdf44935f3941206e4870098a10f97810..1ac010c092282233a110ce4d1c1757a17cd0f609 100644 (file)
@@ -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;