Skip to content

Commit

Permalink
fix: Fix incorrect namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelKlaer committed Jan 15, 2024
1 parent 17c23a9 commit 5a67022
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion KMeansImageColorReducer/ColorReducerDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion KMeansImageColorReducer/ColorReducerDialog.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Dark.Net;

namespace KMeansImageCompression;
namespace KMeansImageColorReducer;

/// <summary>
/// ColorReducerSettings-Dialog
Expand Down
2 changes: 1 addition & 1 deletion KMeansImageColorReducer/ColorUtils.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace KMeansImageCompression;
namespace KMeansImageColorReducer;

public static class ColorUtils
{
Expand Down
2 changes: 1 addition & 1 deletion KMeansImageColorReducer/CustomProgressBar.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace KMeansImageCompression;
namespace KMeansImageColorReducer;

/// <summary>
/// Custom Windows progress bar with color support.
Expand Down
2 changes: 1 addition & 1 deletion KMeansImageColorReducer/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion KMeansImageColorReducer/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using _42Entwickler.ImageLib;
using Dark.Net;

namespace KMeansImageCompression;
namespace KMeansImageColorReducer;

/// <summary>
/// Main-Window
Expand Down
2 changes: 1 addition & 1 deletion KMeansImageColorReducer/KMeansColorReducer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace KMeansImageCompression;
namespace KMeansImageColorReducer;

/// <summary>
/// Image color reducer using the k-means algorithm.
Expand Down
2 changes: 1 addition & 1 deletion KMeansImageColorReducer/PixelStruct.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace KMeansImageCompression;
namespace KMeansImageColorReducer;

/// <summary>
/// Struct to store pixel color values.
Expand Down
4 changes: 3 additions & 1 deletion KMeansImageColorReducer/Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
using Dark.Net;

namespace KMeansImageCompression;
// ReSharper disable MemberCanBePrivate.Global

namespace KMeansImageColorReducer;

/// <summary>
/// Entrypoint for this application and settings.
Expand Down

0 comments on commit 5a67022

Please sign in to comment.