Skip to content

Commit ffe890f

Browse files
committed
renamed webviews.ts to gWebview.ts
1 parent 3918550 commit ffe890f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/webviews/codesWebview.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
import { Uri, Webview } from 'vscode';
1111
import { Control } from '../control';
1212
import { WebViewCommands } from '../util/constants';
13-
import { GWebView } from './webviews';
13+
import { GWebview } from './gWebview';
1414

1515
const 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
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { configuration } from '../util/configuration/config';
2222
import { constants, WebViewCommands } from '../util/constants';
2323
import { 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;

0 commit comments

Comments
 (0)