Winify – Diff between revs 11 and 12

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 11 Rev 12
Line 6... Line 6...
6 using System.Threading; 6 using System.Threading;
7 using System.Threading.Tasks; 7 using System.Threading.Tasks;
8 using System.Windows.Forms; 8 using System.Windows.Forms;
9 using Microsoft.Win32; 9 using Microsoft.Win32;
10 using Winify.Gotify; 10 using Winify.Gotify;
-   11 using Winify.Properties;
Line 11... Line 12...
11   12  
12 namespace Winify 13 namespace Winify
13 { 14 {
14 public class NotificationManager : IDisposable 15 public class NotificationManager : IDisposable
Line 87... Line 88...
87 { 88 {
88 return; 89 return;
89 } 90 }
Line 90... Line 91...
90   91  
91 var notificationForm = 92 var notificationForm =
-   93 new NotificationForm(i, e.Image, Resources.notification, e.Notification.Title,
Line 92... Line 94...
92 new NotificationForm(i, e.Image, e.Notification.Title, e.Notification.Message, 5000); 94 e.Notification.Message, 5000);
Line 93... Line 95...
93   95  
94 _notificationList[i] = notificationForm; 96 _notificationList[i] = notificationForm;