Renamed Katteker.Gui to Katteker.UserInterface.

This commit is contained in:
Holger Boerchers
2018-06-16 09:45:56 +02:00
parent 3aebff4e6d
commit ebc776459d
10 changed files with 54 additions and 54 deletions

View File

@@ -2,11 +2,11 @@
using System.Drawing;
using System.IO;
using System.Windows.Forms;
using Katteker.Gui.Properties;
using Katteker.Properties;
namespace Katteker.Gui
namespace Katteker
{
public sealed partial class UpdateWindow : Form
internal sealed partial class UpdateWindow : Form
{
private readonly ReleaseEntry _entry;
private readonly UpdateManager _updateManager;
@@ -14,7 +14,7 @@ namespace Katteker.Gui
/// <summary>
/// The Update Window
/// </summary>
public UpdateWindow(UpdateManager updateManager, ReleaseEntry entry)
internal UpdateWindow(UpdateManager updateManager, ReleaseEntry entry)
{
_updateManager = updateManager;
_entry = entry;