Skip to content

Commit ad5ac8b

Browse files
committed
refactor: Use correct namespaces in Menu
1 parent 404907e commit ad5ac8b

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Source/Menu/MainForm.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
using System.Windows.Forms;
2828
using GNU.Gettext;
2929
using GNU.Gettext.WinForms;
30+
using Menu.Notifications;
3031
using Orts.Formats.OR;
3132
using ORTS.Common;
3233
using ORTS.Menu;

Source/Menu/Notifications/NotificationManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
using ORTS.Settings;
3232
using ORTS.Updater;
3333
using static ORTS.Common.SystemInfo;
34-
using static Menu.NotificationPage;
34+
using static Menu.Notifications.NotificationPage;
3535

3636
// Behaviour
3737
// Notifications are read only once as a background task at start into Notifications.
@@ -40,7 +40,7 @@
4040
// the visibility of each notification in NotificationList is re-assessed. Also its date.
4141
// Every time the user selects a different notification page, the panel is re-loaded with items for that page.
4242

43-
namespace Menu
43+
namespace Menu.Notifications
4444
{
4545
public class NotificationManager
4646
{

Source/Menu/Notifications/NotificationPage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
using Button = System.Windows.Forms.Button;
2525
using Image = System.Drawing.Image;
2626

27-
namespace Menu
27+
namespace Menu.Notifications
2828
{
2929
/// <summary>
3030
/// Holds presentation details of the current notification displayed on the panel.

Source/Menu/Notifications/Notifications.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
using System.Collections.Generic;
1919

2020

21-
namespace Menu
21+
namespace Menu.Notifications
2222
{
2323
public class Notifications
2424
{

0 commit comments

Comments
 (0)