mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 23:05:47 +02:00
Change visibility of fields.
This commit is contained in:
parent
a408d89e9f
commit
39e50dd226
2 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@ import org.eclipse.jface.viewers.Viewer;
|
||||||
import org.eclipse.swt.widgets.Control;
|
import org.eclipse.swt.widgets.Control;
|
||||||
|
|
||||||
public class MakeContentProvider implements ITreeContentProvider, IMakeTargetListener, IResourceChangeListener {
|
public class MakeContentProvider implements ITreeContentProvider, IMakeTargetListener, IResourceChangeListener {
|
||||||
private boolean bFlatten;
|
protected boolean bFlatten;
|
||||||
|
|
||||||
protected StructuredViewer viewer;
|
protected StructuredViewer viewer;
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ import org.eclipse.swt.widgets.Text;
|
||||||
|
|
||||||
public class MakeTargetDialog extends Dialog {
|
public class MakeTargetDialog extends Dialog {
|
||||||
|
|
||||||
private MessageLine fStatusLine;
|
protected MessageLine fStatusLine;
|
||||||
private static final String TARGET_PREFIX = "TargetBlock"; //$NON-NLS-1$
|
private static final String TARGET_PREFIX = "TargetBlock"; //$NON-NLS-1$
|
||||||
private static final String TARGET_NAME_LABEL = TARGET_PREFIX + ".target.label";
|
private static final String TARGET_NAME_LABEL = TARGET_PREFIX + ".target.label";
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ public class MakeTargetDialog extends Dialog {
|
||||||
private String targetString;
|
private String targetString;
|
||||||
private String targetName;
|
private String targetName;
|
||||||
private String targetBuildID;
|
private String targetBuildID;
|
||||||
private IMakeTarget fTarget;
|
protected IMakeTarget fTarget;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param parentShell
|
* @param parentShell
|
||||||
|
|
Loading…
Add table
Reference in a new issue