Switch to unified view

a/src/qtgui/rclm_idx.cpp b/src/qtgui/rclm_idx.cpp
...
...
301
    readIdxStatus(theconfig, status);
301
    readIdxStatus(theconfig, status);
302
    if (status.hasmonitor) {
302
    if (status.hasmonitor) {
303
        string cmd("touch ");
303
        string cmd("touch ");
304
        string path = path_cat(theconfig->getConfDir(), "recoll.conf");
304
        string path = path_cat(theconfig->getConfDir(), "recoll.conf");
305
        cmd += path;
305
        cmd += path;
306
        system(cmd.c_str());
306
        int status;
307
        if ((status = system(cmd.c_str()))) {
308
            cerr << cmd << " failed with status " << status << endl;
309
        }
307
    }
310
    }
308
}
311
}
309
#else
312
#else
310
// Because moc does not understand ifdefs, have to have this as an empty func
313
// Because moc does not understand ifdefs, have to have this as an empty func
311
void RclMain::bumpIndexing()
314
void RclMain::bumpIndexing()