Skip to content

Commit b0adde0

Browse files
committed
Renamed NewEveMailMessageNotificationEventArgs to EveMailMessageNotificationEventArgs.
Renamed NewEveNotificationNotificationEventArgs to EveNotificationNotificationEventArgs.
1 parent 9155861 commit b0adde0

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

src/EVEMon.Common/Collections/Global/GlobalNotificationCollection.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1324,8 +1324,8 @@ internal void NotifyCharacterPlanetaryPinCompleted(Character character, IEnumera
13241324
/// <param name="newMessages">The new messages.</param>
13251325
internal void NotifyNewEVEMailMessages(Character character, int newMessages)
13261326
{
1327-
NewEveMailMessageNotificationEventArgs notification =
1328-
new NewEveMailMessageNotificationEventArgs(character, newMessages)
1327+
EveMailMessageNotificationEventArgs notification =
1328+
new EveMailMessageNotificationEventArgs(character, newMessages)
13291329
{
13301330
Behaviour = NotificationBehaviour.Merge,
13311331
Priority = NotificationPriority.Information
@@ -1345,8 +1345,8 @@ internal void NotifyNewEVEMailMessages(Character character, int newMessages)
13451345
/// <param name="newNotifications">The new notifications.</param>
13461346
internal void NotifyNewEVENotifications(Character character, int newNotifications)
13471347
{
1348-
NewEveNotificationEventArgsNotificationEventArgs notification =
1349-
new NewEveNotificationEventArgsNotificationEventArgs(character, newNotifications)
1348+
EveNotificationEventArgs notification =
1349+
new EveNotificationEventArgs(character, newNotifications)
13501350
{
13511351
Behaviour = NotificationBehaviour.Merge,
13521352
Priority = NotificationPriority.Information

src/EVEMon.Common/EVEMon.Common.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -540,8 +540,8 @@
540540
<Compile Include="Notifications\ContractsNotificationEventArgs.cs" />
541541
<Compile Include="Notifications\IndustryJobsNotificationEventArgs.cs" />
542542
<Compile Include="Notifications\MarketOrdersNotificationEventArgs.cs" />
543-
<Compile Include="Notifications\NewEveMailMessageNotificationEventArgs.cs" />
544-
<Compile Include="Notifications\NewEveNotificationNotificationEventArgs.cs" />
543+
<Compile Include="Notifications\EveMailMessageNotificationEventArgs.cs" />
544+
<Compile Include="Notifications\EveNotificationNotificationEventArgs.cs" />
545545
<Compile Include="Notifications\NotificationBehaviour.cs" />
546546
<Compile Include="Notifications\NotificationCategory.cs" />
547547
<Compile Include="Notifications\NotificationEventArgs.cs" />

src/EVEMon.Common/Notifications/NewEveMailMessageNotificationEventArgs.cs src/EVEMon.Common/Notifications/EveMailMessageNotificationEventArgs.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
namespace EVEMon.Common.Notifications
44
{
5-
public sealed class NewEveMailMessageNotificationEventArgs : NotificationEventArgs
5+
public sealed class EveMailMessageNotificationEventArgs : NotificationEventArgs
66
{
77
private int m_newMailMessagesCount;
88

99
/// <summary>
10-
/// Initializes a new instance of the <see cref="NewEveMailMessageNotificationEventArgs"/> class.
10+
/// Initializes a new instance of the <see cref="EveMailMessageNotificationEventArgs"/> class.
1111
/// </summary>
1212
/// <param name="sender">The sender.</param>
1313
/// <param name="newMessages">The new messages.</param>
14-
public NewEveMailMessageNotificationEventArgs(Object sender, int newMessages)
14+
public EveMailMessageNotificationEventArgs(Object sender, int newMessages)
1515
: base(sender, NotificationCategory.NewEveMailMessage)
1616
{
1717
m_newMailMessagesCount = newMessages;
@@ -29,7 +29,7 @@ public NewEveMailMessageNotificationEventArgs(Object sender, int newMessages)
2929
/// <param name="other"></param>
3030
public override void Append(NotificationEventArgs other)
3131
{
32-
m_newMailMessagesCount += ((NewEveMailMessageNotificationEventArgs)other).m_newMailMessagesCount;
32+
m_newMailMessagesCount += ((EveMailMessageNotificationEventArgs)other).m_newMailMessagesCount;
3333
UpdateDescription();
3434
}
3535

src/EVEMon.Common/Notifications/NewEveNotificationNotificationEventArgs.cs src/EVEMon.Common/Notifications/EveNotificationNotificationEventArgs.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
namespace EVEMon.Common.Notifications
44
{
5-
public sealed class NewEveNotificationEventArgsNotificationEventArgs : NotificationEventArgs
5+
public sealed class EveNotificationEventArgs : NotificationEventArgs
66
{
77
private int m_newNotificationsCount;
88

99
/// <summary>
10-
/// Initializes a new instance of the <see cref="NewEveNotificationEventArgsNotificationEventArgs"/> class.
10+
/// Initializes a new instance of the <see cref="EveNotificationEventArgs"/> class.
1111
/// </summary>
1212
/// <param name="sender">The sender.</param>
1313
/// <param name="newNotifications">The new notifications.</param>
14-
public NewEveNotificationEventArgsNotificationEventArgs(Object sender, int newNotifications)
14+
public EveNotificationEventArgs(Object sender, int newNotifications)
1515
: base(sender, NotificationCategory.NewEveNotification)
1616
{
1717
m_newNotificationsCount = newNotifications;
@@ -29,7 +29,7 @@ public NewEveNotificationEventArgsNotificationEventArgs(Object sender, int newNo
2929
/// <param name="other"></param>
3030
public override void Append(NotificationEventArgs other)
3131
{
32-
m_newNotificationsCount += ((NewEveNotificationEventArgsNotificationEventArgs)other).m_newNotificationsCount;
32+
m_newNotificationsCount += ((EveNotificationEventArgs)other).m_newNotificationsCount;
3333
UpdateDescription();
3434
}
3535

0 commit comments

Comments
 (0)