no message
This commit is contained in:
@@ -14,12 +14,12 @@ public class InlineTree extends SelectableTree {
|
||||
return SelectionTreeCellRenderer.class;
|
||||
}
|
||||
@Override
|
||||
public Current getCurrent() {
|
||||
public Current currentName() {
|
||||
return Current.InlineGraphElement;
|
||||
}
|
||||
@Override
|
||||
public void ShowCurrentObject() {
|
||||
Object o = Global.mainModule.get(getCurrent());
|
||||
Object o = Global.mainModule.get(currentName());
|
||||
if (o instanceof FileObject) {
|
||||
((FileObject) o).Show(false);
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ public class InlineTree2 extends SelectableTree {
|
||||
return SelectionTreeCellRenderer.class;
|
||||
}
|
||||
@Override
|
||||
public Current getCurrent() {
|
||||
public Current currentName() {
|
||||
return Current.InlineGraphElement2;
|
||||
}
|
||||
@Override
|
||||
@@ -23,7 +23,7 @@ public class InlineTree2 extends SelectableTree {
|
||||
}
|
||||
@Override
|
||||
public void ShowCurrentObject() {
|
||||
Object o = Global.mainModule.get(getCurrent());
|
||||
Object o = Global.mainModule.get(currentName());
|
||||
if (o instanceof FileObject) {
|
||||
((FileObject) o).Show(false);
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ public class IncludesTree extends SelectableTree {
|
||||
super(Global.mainModule.getProject().includes_root);
|
||||
}
|
||||
@Override
|
||||
public Current getCurrent() {
|
||||
public Current currentName() {
|
||||
return Current.IncludeGraphElement;
|
||||
}
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user