Commit e8addfc3 authored by Claes Sjofors's avatar Claes Sjofors

rt_xtt, argument --display added

parent f08ed3c7
......@@ -638,7 +638,14 @@ Xtt::Xtt( int *argc, char **argv[], int *return_sts) :
i_incr = 1;
i++;
break;
}
}
case '-':
// Possible arg to gtk
if ( strcmp( (*argv)[i], "--display") == 0) {
i++;
i_incr = 1;
}
break;
default:
usage();
exit(0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment