recoll GUI: behave as recollq if argv[0] is recollq

This commit is contained in:
Jean-Francois Dockes 2015-07-31 09:50:30 +02:00
parent 12c6b8f210
commit 758a2e332c

View File

@ -235,8 +235,11 @@ Usage(void)
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
// If "-t" is present at all, we don't do the GUI thing and pass the // if we are named recollq or option "-t" is present at all, we
// whole to recollq for command line / pipe usage. // don't do the GUI thing and pass the whole to recollq for
// command line / pipe usage.
if (!strcmp(argv[0], "recollq"))
exit(recollq(&theconfig, argc, argv));
for (int i = 0; i < argc; i++) { for (int i = 0; i < argc; i++) {
if (!strcmp(argv[i], "-t")) { if (!strcmp(argv[i], "-t")) {
exit(recollq(&theconfig, argc, argv)); exit(recollq(&theconfig, argc, argv));