mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
Consistent naming for ext host <-> main process communication
This commit is contained in:
@@ -89,7 +89,7 @@ export class ExtHostStatusBarEntry implements StatusBarItem {
|
||||
|
||||
public hide(): void {
|
||||
this._visible = false;
|
||||
this._proxy.dispose(this.id);
|
||||
this._proxy.$dispose(this.id);
|
||||
}
|
||||
|
||||
private update(): void {
|
||||
@@ -106,7 +106,7 @@ export class ExtHostStatusBarEntry implements StatusBarItem {
|
||||
this._timeoutHandle = null;
|
||||
|
||||
// Set to status bar
|
||||
this._proxy.setEntry(this.id, this.text, this.tooltip, this.command, this.color,
|
||||
this._proxy.$setEntry(this.id, this.text, this.tooltip, this.command, this.color,
|
||||
this._alignment === ExtHostStatusBarAlignment.Left ? MainThreadStatusBarAlignment.LEFT : MainThreadStatusBarAlignment.RIGHT,
|
||||
this._priority);
|
||||
}, 0);
|
||||
|
||||
Reference in New Issue
Block a user