Skip to content

Commit

Permalink
refactor(src): always use framework type rather than keyword types
Browse files Browse the repository at this point in the history
  • Loading branch information
LexouDuck committed Sep 6, 2021
1 parent a443ba3 commit a51372e
Show file tree
Hide file tree
Showing 166 changed files with 5,485 additions and 5,472 deletions.
4 changes: 2 additions & 2 deletions EmblemMagic/Settings.cs
Expand Up @@ -17,11 +17,11 @@ internal sealed partial class Settings {
//
}

private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) {
private void SettingChangingEventHandler(System.Object sender, System.Configuration.SettingChangingEventArgs e) {
// Add code to handle the SettingChangingEvent event here.
}

private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) {
private void SettingsSavingEventHandler(System.Object sender, System.ComponentModel.CancelEventArgs e) {
// Add code to handle the SettingsSaving event here.
}
}
Expand Down

0 comments on commit a51372e

Please sign in to comment.