Skip to content

Commit

Permalink
Merge branch 'dev/cazamor/kbd-sln/polish' of https://github.com/micro…
Browse files Browse the repository at this point in the history
…soft/terminal into dev/cazamor/kbd-sln/polish
  • Loading branch information
carlos-zamora committed Jun 23, 2022
2 parents 06a39f8 + 0b54345 commit 40ee74e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cascadia/TerminalControl/ControlCore.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ namespace winrt::Microsoft::Terminal::Control::implementation

void SendInput(const winrt::hstring& wstr);
void PasteText(const winrt::hstring& hstr);
bool CopySelectionToClipboard(bool singleLine, const Windows::Foundation::IReference<CopyFormat>& formats, bool clearSelection = false);
bool CopySelectionToClipboard(bool singleLine, const Windows::Foundation::IReference<CopyFormat>& formats, bool clearSelection = true);
void SelectAll();
bool ToggleBlockSelection();
void ToggleMarkMode();
Expand Down
2 changes: 1 addition & 1 deletion src/cascadia/TerminalCore/Terminal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ class Microsoft::Terminal::Core::Terminal final :
void SetBlockSelection(const bool isEnabled) noexcept;
void UpdateSelection(SelectionDirection direction, SelectionExpansion mode, ControlKeyStates mods);
void SelectAll();
bool IsInQuickEditMode() const;
const bool IsInQuickEditMode() const noexcept;
bool IsInMarkMode() const;
void ToggleMarkMode();

Expand Down
2 changes: 1 addition & 1 deletion src/cascadia/TerminalCore/TerminalSelection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ void Terminal::SetBlockSelection(const bool isEnabled) noexcept
_blockSelection = isEnabled;
}

bool Terminal::IsInQuickEditMode() const
const bool Terminal::IsInQuickEditMode() const noexcept
{
return _quickEditMode;
}
Expand Down

1 comment on commit 40ee74e

@github-actions

This comment was marked as resolved.

Please sign in to comment.