Change namespace/folder name

This commit is contained in:
Michael Bucari-Tovo 2022-05-12 11:17:14 -06:00
parent 2ae8ef87d9
commit 8871651549
12 changed files with 11 additions and 11 deletions

View File

@ -72,7 +72,7 @@
this.pdfsCountsLbl = new System.Windows.Forms.ToolStripStatusLabel(); this.pdfsCountsLbl = new System.Windows.Forms.ToolStripStatusLabel();
this.addFilterBtn = new System.Windows.Forms.Button(); this.addFilterBtn = new System.Windows.Forms.Button();
this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.processBookQueue1 = new LibationWinForms.ProcessBookQueue(); this.processBookQueue1 = new LibationWinForms.ProcessQueue.ProcessBookQueue();
this.menuStrip1.SuspendLayout(); this.menuStrip1.SuspendLayout();
this.statusStrip1.SuspendLayout(); this.statusStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
@ -538,6 +538,6 @@
private System.Windows.Forms.ToolStripMenuItem removeToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem removeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem liberateVisible2ToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem liberateVisible2ToolStripMenuItem;
private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.SplitContainer splitContainer1;
private ProcessBookQueue processBookQueue1; private LibationWinForms.ProcessQueue.ProcessBookQueue processBookQueue1;
} }
} }

View File

@ -10,6 +10,7 @@ using Dinah.Core.Drawing;
using Dinah.Core.Threading; using Dinah.Core.Threading;
using LibationFileManager; using LibationFileManager;
using LibationWinForms.Dialogs; using LibationWinForms.Dialogs;
using LibationWinForms.ProcessQueue;
namespace LibationWinForms namespace LibationWinForms
{ {

View File

@ -9,7 +9,7 @@ using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
namespace LibationWinForms.NewUI namespace LibationWinForms.ProcessQueue
{ {
public enum ProcessBookResult public enum ProcessBookResult
{ {

View File

@ -1,4 +1,4 @@
namespace LibationWinForms namespace LibationWinForms.ProcessQueue
{ {
partial class ProcessBookControl partial class ProcessBookControl
{ {

View File

@ -7,9 +7,9 @@ using Dinah.Core.Threading;
using FileLiberator; using FileLiberator;
using LibationFileManager; using LibationFileManager;
using LibationWinForms.BookLiberation; using LibationWinForms.BookLiberation;
using LibationWinForms.NewUI; using LibationWinForms.ProcessQueue;
namespace LibationWinForms namespace LibationWinForms.ProcessQueue
{ {
internal interface ILiberationBaseForm internal interface ILiberationBaseForm
{ {

View File

@ -1,4 +1,4 @@
namespace LibationWinForms namespace LibationWinForms.ProcessQueue
{ {
partial class ProcessBookForm partial class ProcessBookForm
{ {

View File

@ -8,7 +8,7 @@ using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
namespace LibationWinForms namespace LibationWinForms.ProcessQueue
{ {
public partial class ProcessBookForm : Form public partial class ProcessBookForm : Form
{ {

View File

@ -1,4 +1,4 @@
namespace LibationWinForms namespace LibationWinForms.ProcessQueue
{ {
partial class ProcessBookQueue partial class ProcessBookQueue
{ {

View File

@ -1,7 +1,6 @@
using DataLayer; using DataLayer;
using Dinah.Core.Threading; using Dinah.Core.Threading;
using LibationWinForms.BookLiberation; using LibationWinForms.BookLiberation;
using LibationWinForms.NewUI;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
@ -9,7 +8,7 @@ using System.Runtime.InteropServices;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
namespace LibationWinForms namespace LibationWinForms.ProcessQueue
{ {
internal partial class ProcessBookQueue : UserControl, ILogForm internal partial class ProcessBookQueue : UserControl, ILogForm
{ {