Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lhecker committed Jul 15, 2021
1 parent b8d6f68 commit 9fb176b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/cascadia/TerminalControl/KeyChord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,13 @@ namespace winrt::Microsoft::Terminal::Control::implementation
_vkey = value;
}

int32_t KeyChord::ScanCode() noexcept {
int32_t KeyChord::ScanCode() noexcept
{
return _scanCode;
}

void KeyChord::ScanCode(int32_t value) noexcept {
void KeyChord::ScanCode(int32_t value) noexcept
{
_scanCode = value;
}
}
1 change: 0 additions & 1 deletion src/cascadia/WindowsTerminal/AppHost.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ class AppHost
bool HasWindow();

private:

std::unique_ptr<IslandWindow> _window;
winrt::TerminalApp::App _app;
winrt::TerminalApp::AppLogic _logic;
Expand Down

1 comment on commit 9fb176b

@github-actions

This comment was marked as outdated.

Please sign in to comment.