Skip to content

Commit

Permalink
change user control name spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Aug 5, 2023
1 parent d444bba commit cba875b
Show file tree
Hide file tree
Showing 38 changed files with 56 additions and 79 deletions.
4 changes: 2 additions & 2 deletions Analogy/Forms/FileComparerForm.Designer.cs

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

4 changes: 2 additions & 2 deletions Analogy/Forms/FormCombineFiles.Designer.cs

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

4 changes: 2 additions & 2 deletions Analogy/Forms/SearchForm.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 Analogy/UserControls/BookmarkLog.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 Analogy/UserControls/BookmarkLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using DevExpress.XtraBars;
using DevExpress.XtraEditors;

namespace Analogy
namespace Analogy.UserControls
{

public partial class BookmarkLog : XtraUserControl, IUserControlWithUCLogs
Expand Down
5 changes: 1 addition & 4 deletions Analogy/UserControls/ClientServerLog.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 Analogy/UserControls/ClientServerLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using Analogy.DataTypes;
using Analogy.Forms;

namespace Analogy
namespace Analogy.UserControls
{

public partial class ClientServerUCLog : XtraUserControl, IUserControlWithUCLogs
Expand Down
6 changes: 3 additions & 3 deletions Analogy/UserControls/CombineFilesUC.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 Analogy/UserControls/CombineFilesUC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Analogy.Interfaces;
using DevExpress.XtraEditors;

namespace Analogy
namespace Analogy.UserControls
{
public partial class CombineFilesUC : XtraUserControl
{
Expand Down
2 changes: 1 addition & 1 deletion Analogy/UserControls/DataVisualizerUC.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 Analogy/UserControls/DataVisualizerUC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Analogy.CommonControls.DataTypes;
using Analogy.DataTypes;

namespace Analogy
namespace Analogy.UserControls
{
public partial class DataVisualizerUC : DevExpress.XtraEditors.XtraUserControl
{
Expand Down
5 changes: 1 addition & 4 deletions Analogy/UserControls/FilePoolingLog.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 Analogy/UserControls/FilePoolingLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using Microsoft.Extensions.Logging;
using Message = System.Windows.Forms.Message;

namespace Analogy
namespace Analogy.UserControls
{

public partial class FilePoolingUCLogs : XtraUserControl, IUserControlWithUCLogs
Expand Down
2 changes: 1 addition & 1 deletion Analogy/UserControls/FileSystemUC.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 Analogy/UserControls/FileSystemUC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.IO;
using System.Windows.Forms;

namespace Analogy
namespace Analogy.UserControls
{
public partial class FileSystemUC : XtraUserControl
{
Expand Down
2 changes: 1 addition & 1 deletion Analogy/UserControls/FilesOperationsUC.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 Analogy/UserControls/FilesOperationsUC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using Analogy.Interfaces.DataTypes;
using Microsoft.Extensions.Logging;

namespace Analogy
namespace Analogy.UserControls
{
public partial class FilesOperationsUC : XtraUserControl, ILogMessageCreatedHandler
{
Expand Down
6 changes: 3 additions & 3 deletions Analogy/UserControls/FolderAndFileSystemUC.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 Analogy/UserControls/FolderAndFileSystemUC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Analogy.DataTypes;
using DevExpress.XtraEditors;

namespace Analogy
namespace Analogy.UserControls
{
public partial class FolderAndFileSystemUC : XtraUserControl
{
Expand Down
6 changes: 3 additions & 3 deletions Analogy/UserControls/FolderTreeViewUC.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 Analogy/UserControls/FolderTreeViewUC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using Analogy.DataTypes;
using DevExpress.XtraEditors;

namespace Analogy
namespace Analogy.UserControls
{
public partial class FolderTreeViewUC : XtraUserControl
{
Expand Down
12 changes: 4 additions & 8 deletions Analogy/UserControls/LocalLogFilesUC.Designer.cs

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

3 changes: 1 addition & 2 deletions Analogy/UserControls/LocalLogFilesUC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@
using System.IO;
using System.Threading.Tasks;
using System.Windows.Forms;
using DevExpress.Utils;
using DevExpress.Utils.Menu;
using DevExpress.XtraEditors;
using DevExpress.XtraTreeList;

namespace Analogy
namespace Analogy.UserControls
{

public partial class LocalLogFilesUC : XtraUserControl, IUserControlWithUCLogs
Expand Down
4 changes: 1 addition & 3 deletions Analogy/UserControls/LogsComparerUC.Designer.cs

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

3 changes: 2 additions & 1 deletion Analogy/UserControls/LogsComparerUC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
using Analogy.Common.Interfaces;
using Analogy.DataTypes;
using Analogy.Interfaces;
using Analogy.Tools;
using Microsoft.Extensions.Logging;

namespace Analogy.Tools
namespace Analogy.UserControls
{
public partial class LogsComparerUC : DevExpress.XtraEditors.XtraUserControl
{
Expand Down
6 changes: 2 additions & 4 deletions Analogy/UserControls/OnlineLog.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 Analogy/UserControls/OnlineLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using DevExpress.XtraEditors;
using Microsoft.Extensions.Logging;

namespace Analogy
namespace Analogy.UserControls
{

public partial class OnlineUCLogs : XtraUserControl, IUserControlWithUCLogs
Expand Down
2 changes: 1 addition & 1 deletion Analogy/UserControls/PieChartUC.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 Analogy/UserControls/PieChartUC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Windows.Forms;
using Analogy.DataTypes;

namespace Analogy
namespace Analogy.UserControls
{
public partial class PieChartUC : DevExpress.XtraEditors.XtraUserControl
{
Expand Down
6 changes: 2 additions & 4 deletions Analogy/UserControls/RemoteLogsUC.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 Analogy/UserControls/RemoteLogsUC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Microsoft.Extensions.Logging;


namespace Analogy
namespace Analogy.UserControls
{

public partial class RemoteLogsUC : XtraUserControl, IUserControlWithUCLogs
Expand Down
10 changes: 5 additions & 5 deletions Analogy/UserControls/SearchInFilesUC.Designer.cs

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

Loading

0 comments on commit cba875b

Please sign in to comment.