BIG deep clean

This commit is contained in:
2020-06-10 13:14:16 +03:00
parent f579718e0b
commit c59579d5d5
222 changed files with 2392 additions and 11600 deletions

View File

@@ -8,7 +8,6 @@ PIVector<ParserSection> parse(const PIString & path) {
if (!f.open(path, PIIODevice::ReadOnly))
return ret;
PIString ext = f.fileInfo().extension().toLowerCase();
//PIString fc = PIString::fromUTF8(f.readAll());
PIString dir = PIDir(f.fileInfo().dir()).absolutePath() + "/";
//piCout << dir;
if (ext == "conf") return parseConf(f, dir);
@@ -19,7 +18,6 @@ PIVector<ParserSection> parse(const PIString & path) {
ParserEntry makeEntry(PIString filename, const PIString & dir) {
ParserEntry ret;
//ret.alias = PIFile::fileInfo(filename).name();
ret.path = filename;
if (!PIDir(PIFile::fileInfo(filename).dir()).isAbsolute()) {
//piCout << "rel, add dir";