Fix color codes. Now it compilable

This commit is contained in:
SR_team 2018-10-31 16:06:21 +03:00
parent 2af89ce369
commit 5b57d9eafe
2 changed files with 4 additions and 4 deletions

View File

@ -97,7 +97,7 @@ class NewFileDlg : Dialog {
TextWidget { text: OPTION_FILE_PATH } TextWidget { text: OPTION_FILE_PATH }
EditLine { id: edFilePath; text: ""; layoutWidth: fill; readOnly: true } EditLine { id: edFilePath; text: ""; layoutWidth: fill; readOnly: true }
} }
TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: #FF0000 } TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: 0xFF0000 }
} }
}); });
} catch (Exception e) { } catch (Exception e) {
@ -394,4 +394,4 @@ private bool isSubdirOf(string path, string basePath) {
return ch == '/' || ch == '\\'; return ch == '/' || ch == '\\';
} }
return false; return false;
} }

View File

@ -61,7 +61,7 @@ class NewFolderDialog : Dialog {
CheckBox { id: makePackage } CheckBox { id: makePackage }
TextWidget { text: OPTION_MAKE_PACKAGE} TextWidget { text: OPTION_MAKE_PACKAGE}
} }
TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: #FF0000 } TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: 0xFF0000 }
} }
}); });
} catch (Exception e) { } catch (Exception e) {
@ -183,4 +183,4 @@ class NewFolderDialog : Dialog {
} }
super.close(newaction); super.close(newaction);
} }
} }