no message
This commit is contained in:
@@ -11,9 +11,9 @@ public class FuncCall extends FileObjectWithMessages{
|
||||
//JSON------------------------------------------
|
||||
@Expose
|
||||
public String funcName = "";
|
||||
public int canBeInlined = 0;
|
||||
public int parentLineOffset = 0;// line объявления - line вычислять?
|
||||
//END OF JSON------------------------------------
|
||||
public int parentLineOffset = 0;// line объявления - line вычислять?
|
||||
public boolean canBeInlined = false;
|
||||
@Description("IGNORE")
|
||||
private boolean selected = false;
|
||||
//---
|
||||
@@ -30,7 +30,7 @@ public class FuncCall extends FileObjectWithMessages{
|
||||
}
|
||||
@Override
|
||||
public boolean isSelectionEnabled() {
|
||||
return canBeInlined!=0;
|
||||
return canBeInlined;
|
||||
}
|
||||
@Override
|
||||
public String getSelectionText() {
|
||||
|
||||
@@ -24,7 +24,7 @@ public class FuncCallH extends FuncCall {
|
||||
file = funcInfo.file;
|
||||
line = funcInfo.line;
|
||||
funcName = funcInfo.funcName;
|
||||
canBeInlined = 1;
|
||||
canBeInlined = true;
|
||||
parentLineOffset = 0;
|
||||
}
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user