Subversion Repositories Kolibri OS

Rev

Rev 6808 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6808 Rev 7227
Line 349... Line 349...
349
	if (check_is_the_adress_local(history.current())==true) {
349
	if (check_is_the_adress_local(history.current())==true) {
350
		io.run(DEFAULT_EDITOR, history.current());
350
		io.run(DEFAULT_EDITOR, history.current());
351
	}
351
	}
352
	else {
352
	else {
353
		//io.write(strlen(io.buffer_data), io.buffer_data, DEFAULT_PREVIEW_PATH); // <--- doesn't work, smth odd, need to check
353
		//io.write(strlen(io.buffer_data), io.buffer_data, DEFAULT_PREVIEW_PATH); // <--- doesn't work, smth odd, need to check
354
		WriteFile(strlen(io.buffer_data), io.buffer_data, DEFAULT_PREVIEW_PATH);
354
		CreateFile(strlen(io.buffer_data), io.buffer_data, DEFAULT_PREVIEW_PATH);
355
		io.run(DEFAULT_EDITOR, DEFAULT_PREVIEW_PATH);
355
		io.run(DEFAULT_EDITOR, DEFAULT_PREVIEW_PATH);
356
	}
356
	}
357
}
357
}
Line 358... Line 358...
358
 
358