File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1010import { Uri , Webview } from 'vscode' ;
1111import { Control } from '../control' ;
1212import { WebViewCommands } from '../util/constants' ;
13- import { GWebView } from './webviews ' ;
13+ import { GWebview } from './gWebview ' ;
1414
1515const GCodesWebviewInfo = {
1616 ViewId : 'gcode.webviews.codes' ,
1717 Title : 'G/M Code Reference' ,
1818} ;
1919
20- export class CodesWebview extends GWebView {
20+ export class CodesWebview extends GWebview {
2121 constructor ( ) {
2222 super ( GCodesWebviewInfo . ViewId , GCodesWebviewInfo . Title , WebViewCommands . ShowCodesWebview ) ;
2323 }
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import { configuration } from '../util/configuration/config';
2222import { constants , WebViewCommands } from '../util/constants' ;
2323import { Control } from '../control' ;
2424
25- export abstract class GWebView implements Disposable {
25+ export abstract class GWebview implements Disposable {
2626 protected _disposable : Disposable ;
2727 private _panel : WebviewPanel | undefined ;
2828 private _dPanel : Disposable | undefined ;
You can’t perform that action at this time.
0 commit comments