Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import com.github.kklisura.cdt.protocol.types.runtime.RemoteObject;
import consulo.execution.debug.frame.XCompositeNode;
import consulo.execution.debug.frame.XValueGroup;
import consulo.localize.LocalizeValue;
import consulo.util.lang.StringUtil;

import java.util.Locale;
Expand All @@ -18,10 +19,8 @@ public class CDTScopeValue extends XValueGroup {
private final RemoteObject myRemoteObject;
private final CDTProcessBase myProcess;

public CDTScopeValue(Scope scope,
RemoteObject remoteObject,
CDTProcessBase process) {
super(StringUtil.capitalize(scope.getType().name().toLowerCase(Locale.ROOT)));
public CDTScopeValue(Scope scope, RemoteObject remoteObject, CDTProcessBase process) {
super(LocalizeValue.localizeTODO(StringUtil.capitalize(scope.getType().name().toLowerCase(Locale.ROOT))));
myScope = scope;
myRemoteObject = remoteObject;
myProcess = process;
Expand Down
Loading