1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-05 02:34:07 +02:00

Replace 'new EventArgs()' with 'EventArgs.Empty'

This commit is contained in:
chylex 2017-09-01 14:34:23 +02:00
parent 2a41d21a29
commit e8604a261d
6 changed files with 8 additions and 8 deletions

View File

@ -105,7 +105,7 @@ public bool MuteNotifications{
set{
if (_muteNotifications != value){
_muteNotifications = value;
MuteToggled?.Invoke(this, new EventArgs());
MuteToggled?.Invoke(this, EventArgs.Empty);
}
}
}
@ -116,7 +116,7 @@ public int ZoomLevel{
set{
if (_zoomLevel != value){
_zoomLevel = value;
ZoomLevelChanged?.Invoke(this, new EventArgs());
ZoomLevelChanged?.Invoke(this, EventArgs.Empty);
}
}
}
@ -129,7 +129,7 @@ public TrayIcon.Behavior TrayBehavior{
set{
if (_trayBehavior != value){
_trayBehavior = value;
TrayBehaviorChanged?.Invoke(this, new EventArgs());
TrayBehaviorChanged?.Invoke(this, EventArgs.Empty);
}
}
}

View File

@ -377,7 +377,7 @@ protected override void WndProc(ref Message m){
if (isLoaded){
if (m.Msg == Program.WindowRestoreMessage){
if (WindowsUtils.CurrentProcessID == m.WParam.ToInt32()){
trayIcon_ClickRestore(trayIcon, new EventArgs());
trayIcon_ClickRestore(trayIcon, EventArgs.Empty);
}
return;

View File

@ -145,7 +145,7 @@ private void owner_FormClosed(object sender, FormClosedEventArgs e){
private void Browser_IsBrowserInitializedChanged(object sender, IsBrowserInitializedChangedEventArgs e){
if (e.IsBrowserInitialized){
Initialized?.Invoke(this, new EventArgs());
Initialized?.Invoke(this, EventArgs.Empty);
int identifier = browser.GetBrowser().Identifier;
Disposed += (sender2, args2) => BrowserProcesses.Forget(identifier);

View File

@ -173,7 +173,7 @@ private void process_Exited(object sender, EventArgs e){
}
private void TriggerProcessExitEventUnsafe(){
ProcessExited?.Invoke(this, new EventArgs());
ProcessExited?.Invoke(this, EventArgs.Empty);
}
}
}

View File

@ -38,7 +38,7 @@ public DialogSettingsRestart(CommandLineArgs currentArgs){
tbDataFolder.TextChanged += control_Change;
}
control_Change(this, new EventArgs());
control_Change(this, EventArgs.Empty);
Text = Program.BrandName+" Arguments";
}

View File

@ -24,7 +24,7 @@ public TabSettingsSounds(){
labelVolumeValue.Text = trackBarVolume.Value+"%";
tbCustomSound.Text = Config.NotificationSoundPath;
tbCustomSound_TextChanged(tbCustomSound, new EventArgs());
tbCustomSound_TextChanged(tbCustomSound, EventArgs.Empty);
Disposed += (sender, args) => soundNotification.Dispose();
}