Switch to unified view

a/src/query/wasastringtoquery.cpp b/src/query/wasastringtoquery.cpp
...
...
328
328
329
        // Check for quoted or unquoted value
329
        // Check for quoted or unquoted value
330
        unsigned int mods = 0;
330
        unsigned int mods = 0;
331
        if (checkSubMatch(SMI_QUOTED, match, reason)) {
331
        if (checkSubMatch(SMI_QUOTED, match, reason)) {
332
        nclause->m_value = match;
332
        nclause->m_value = match;
333
                mods |= WasaQuery::WQM_QUOTED;
333
        } else if (checkSubMatch(SMI_TERM, match, reason)) {
334
        } else if (checkSubMatch(SMI_TERM, match, reason)) {
334
        nclause->m_value = match;
335
        nclause->m_value = match;
335
        }
336
        }
336
337
337
        if (nclause->m_value.empty()) {
338
        if (nclause->m_value.empty()) {