mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
CPP-18160: Set the proper name for non-imported symbols completion
... and fix the amount of struct/class/union symbols we get for only non-imported case. GitOrigin-RevId: 2d66707e339862bf0d519b3233485b743d7b2b24
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ae83bc8c9d
commit
8debfd2af1
+5
-5
@@ -21,7 +21,7 @@ public final class CompletionParameters {
|
||||
private final int myInvocationCount;
|
||||
private final CompletionProcess myProcess;
|
||||
private boolean isTestingMode = false;
|
||||
private boolean onlyCompletionsWithAutoImport = false;
|
||||
private boolean completeOnlyNotImported = false;
|
||||
|
||||
@ApiStatus.Internal
|
||||
public CompletionParameters(@NotNull final PsiElement position, @NotNull final PsiFile originalFile,
|
||||
@@ -139,11 +139,11 @@ public final class CompletionParameters {
|
||||
isTestingMode = runTestingMode;
|
||||
}
|
||||
|
||||
public boolean isOnlyCompletionsWithAutoImport() {
|
||||
return onlyCompletionsWithAutoImport;
|
||||
public boolean isCompleteOnlyNotImported() {
|
||||
return completeOnlyNotImported;
|
||||
}
|
||||
|
||||
public void setOnlyCompletionsWithAutoImport(boolean onlyAutoImport) {
|
||||
onlyCompletionsWithAutoImport = onlyAutoImport;
|
||||
public void setCompleteOnlyNotImported(boolean onlyNonImported) {
|
||||
completeOnlyNotImported = onlyNonImported;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user