View Single Post
Posts: 578 | Thanked: 994 times | Joined on Dec 2012
#28
Word prediction is only available with virtual keyboard?
Do I need some special package for it? For now I have blank bar above virtual keyboard.
Rebot fixed it

- Tab key could insert 4 spaces like in qtcreator.
- It's impossible to open file directly from terminal using harbour-tide-root.
This one works for me
Code:
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>

int main(int argc, char *argv[])
{
	if (setuid(0)) {
		perror("setuid");
		return 1;
	} 
    	argv[0] = "/usr/bin/harbour-tide";
    	execv(argv[0], argv);

	return 0;
}

Last edited by elros34; 2017-01-18 at 18:40.
 

The Following 5 Users Say Thank You to elros34 For This Useful Post: