mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 04:04:59 +00:00
code_style: remove all IDE warnings
This commit is contained in:
parent
9ac550242e
commit
a807aa9e12
94 changed files with 785 additions and 807 deletions
|
@ -11,7 +11,7 @@ namespace SourceGit.Views
|
|||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void MinimizeWindow(object sender, RoutedEventArgs e)
|
||||
private void MinimizeWindow(object _1, RoutedEventArgs _2)
|
||||
{
|
||||
var window = this.FindAncestorOfType<Window>();
|
||||
if (window != null)
|
||||
|
@ -20,7 +20,7 @@ namespace SourceGit.Views
|
|||
}
|
||||
}
|
||||
|
||||
private void MaximizeOrRestoreWindow(object sender, RoutedEventArgs e)
|
||||
private void MaximizeOrRestoreWindow(object _1, RoutedEventArgs _2)
|
||||
{
|
||||
var window = this.FindAncestorOfType<Window>();
|
||||
if (window != null)
|
||||
|
@ -29,7 +29,7 @@ namespace SourceGit.Views
|
|||
}
|
||||
}
|
||||
|
||||
private void CloseWindow(object sender, RoutedEventArgs e)
|
||||
private void CloseWindow(object _1, RoutedEventArgs _2)
|
||||
{
|
||||
var window = this.FindAncestorOfType<Window>();
|
||||
if (window != null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue