main - some renames of services

This commit is contained in:
Benjamin Pasero
2017-11-23 15:43:27 +01:00
parent 18f4237ded
commit ac0ba66062
10 changed files with 116 additions and 116 deletions

View File

@@ -32,7 +32,7 @@ export class ProxyAuthHandler {
private disposables: IDisposable[] = [];
constructor(
@IWindowsMainService private windowsService: IWindowsMainService
@IWindowsMainService private windowsMainService: IWindowsMainService
) {
const onLogin = fromNodeEventEmitter<LoginEvent>(app, 'login', (event, webContents, req, authInfo, cb) => ({ event, webContents, req, authInfo, cb }));
onLogin(this.onLogin, this, this.disposables);
@@ -59,7 +59,7 @@ export class ProxyAuthHandler {
title: 'VS Code'
};
const focusedWindow = this.windowsService.getFocusedWindow();
const focusedWindow = this.windowsMainService.getFocusedWindow();
if (focusedWindow) {
opts.parent = focusedWindow.win;