e4macs icon indicating copy to clipboard operation
e4macs copied to clipboard

Compile error in latest master branch

Open davidmichaelkarr opened this issue 1 year ago • 1 comments

It appears that the update site has gone away, and I think it's been gone for a while. I'm guessing I'll have to remember how to build this locally again. I did this 3 years ago, but I don't remember the process, and I can't find notes on how to do it.

I see that when I checkout the master branch in the "Eclipse for committers" distro, there is a compile error in com.mulgasoft.emacsplus.execute.SelectionDialog:

	public SelectionDialog(Shell parent, ISelectExecute mini, ITextEditor editor) {
		// Europa compatible constructor
		super((Shell) null, PopupDialog.HOVER_SHELLSTYLE, false, false, false, false, null, null);
		this.editor = editor;
		this.minibuffer = mini;
	}

Saying: The constructor PopupDialog(Shell, int, boolean, boolean, boolean, boolean, null, null) is undefined

It's saying that this constructor takes five booleans, not four. I could just add an additional "false", but I'm not certain of the consequences of that, and I'm unsure of the implications of the fact that this even has a compile error.

Assuming I get past this properly, I'm not sure of the steps to build this and construct a local update site.

davidmichaelkarr avatar Sep 15 '23 20:09 davidmichaelkarr