@@ -16,7 +16,7 @@ namespace winrt::TerminalApp::implementation
16
16
winrt::Windows::UI::Xaml::FrameworkElement GetRoot ();
17
17
winrt::Microsoft::Terminal::Settings::Editor::MainPage SettingsUI () { return _sui; }
18
18
19
- winrt::Windows::Foundation::Size MinSize ();
19
+ winrt::Windows::Foundation::Size MinimumSize ();
20
20
void Focus (winrt::Windows::UI::Xaml::FocusState reason = winrt::Windows::UI::Xaml::FocusState::Programmatic);
21
21
void Close ();
22
22
winrt::Microsoft::Terminal::Settings::Model::NewTerminalArgs GetNewTerminalArgs (const bool asContent) const ;
@@ -29,14 +29,14 @@ namespace winrt::TerminalApp::implementation
29
29
Windows::Foundation::IReference<winrt::Windows::UI::Color> TabColor () const noexcept ;
30
30
winrt::Windows::UI::Xaml::Media::Brush BackgroundBrush ();
31
31
32
- til::typed_event<> CloseRequested;
33
- til::typed_event<winrt::Windows::Foundation::IInspectable, winrt::TerminalApp::BellEventArgs> BellRequested;
34
- til::typed_event<> TitleChanged;
35
- til::typed_event<> TabColorChanged;
36
- til::typed_event<> TaskbarProgressChanged;
37
32
til::typed_event<> ConnectionStateChanged;
38
- til::typed_event<> ReadOnlyChanged;
39
- til::typed_event<> FocusRequested;
33
+ til::typed_event<IPaneContent> CloseRequested;
34
+ til::typed_event<IPaneContent, winrt::TerminalApp::BellEventArgs> BellRequested;
35
+ til::typed_event<IPaneContent> TitleChanged;
36
+ til::typed_event<IPaneContent> TabColorChanged;
37
+ til::typed_event<IPaneContent> TaskbarProgressChanged;
38
+ til::typed_event<IPaneContent> ReadOnlyChanged;
39
+ til::typed_event<IPaneContent> FocusRequested;
40
40
41
41
private:
42
42
winrt::Microsoft::Terminal::Settings::Editor::MainPage _sui{ nullptr };
0 commit comments