Switch to unified view

a/src/qtgui/guiutils.cpp b/src/qtgui/guiutils.cpp
...
...
142
           "/Recoll/prefs/query/replaceAbstract", Bool, false);
142
           "/Recoll/prefs/query/replaceAbstract", Bool, false);
143
    SETTING_RW(prefs.syntAbsLen, "/Recoll/prefs/query/syntAbsLen", 
143
    SETTING_RW(prefs.syntAbsLen, "/Recoll/prefs/query/syntAbsLen", 
144
           Num, 250);
144
           Num, 250);
145
    SETTING_RW(prefs.syntAbsCtx, "/Recoll/prefs/query/syntAbsCtx", 
145
    SETTING_RW(prefs.syntAbsCtx, "/Recoll/prefs/query/syntAbsCtx", 
146
           Num, 4);
146
           Num, 4);
147
    SETTING_RW(prefs.autoSuffs, "/Recoll/prefs/query/autoSuffs", , "");
148
    SETTING_RW(prefs.autoSuffsEnable, 
149
         "/Recoll/prefs/query/autoSuffsEnable", Bool, false);
147
150
148
    SETTING_RW(prefs.sortDepth, "/Recoll/prefs/query/sortDepth",
151
    SETTING_RW(prefs.sortDepth, "/Recoll/prefs/query/sortDepth",
149
           Num, 100);
152
           Num, 100);
150
    SETTING_RW(prefs.sortSpec, "/Recoll/prefs/query/sortSpec", 
153
    SETTING_RW(prefs.sortSpec, "/Recoll/prefs/query/sortSpec", 
151
           Num, 0);
154
           Num, 0);
...
...
253
    } else {
256
    } else {
254
    list<string> tl = g_dynconf->getStringList(asbdSk);
257
    list<string> tl = g_dynconf->getStringList(asbdSk);
255
    for (list<string>::iterator it = tl.begin(); it != tl.end(); it++)
258
    for (list<string>::iterator it = tl.begin(); it != tl.end(); it++)
256
        prefs.asearchSubdirHist.push_front(QString::fromUtf8(it->c_str()));
259
        prefs.asearchSubdirHist.push_front(QString::fromUtf8(it->c_str()));
257
    }
260
    }
258
259
}
261
}