summaryrefslogtreecommitdiffstats
path: root/win/C#
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-09-12 16:01:59 +0000
committersr55 <[email protected]>2010-09-12 16:01:59 +0000
commit852d9bd1e192818ba1add39a06213a11e3f94293 (patch)
tree74e924ab03d95c10b7af7f06f0995fddb714860d /win/C#
parent470eca93d99db0877d5b9f37cfeb9b63dfe30ae5 (diff)
WinGui:
- Move The Title Specific scan tool window into a ToolWindows folder. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3521 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#')
-rw-r--r--win/C#/HandBrakeCS.csproj7
-rw-r--r--win/C#/ToolWindows/TitleSpecificScan.Designer.cs (renamed from win/C#/TitleSpecificScan.Designer.cs)2
-rw-r--r--win/C#/ToolWindows/TitleSpecificScan.cs (renamed from win/C#/TitleSpecificScan.cs)2
-rw-r--r--win/C#/ToolWindows/TitleSpecificScan.resx (renamed from win/C#/TitleSpecificScan.resx)0
-rw-r--r--win/C#/frmMain.cs2
5 files changed, 8 insertions, 5 deletions
diff --git a/win/C#/HandBrakeCS.csproj b/win/C#/HandBrakeCS.csproj
index 52b1db28b..5275cf840 100644
--- a/win/C#/HandBrakeCS.csproj
+++ b/win/C#/HandBrakeCS.csproj
@@ -282,10 +282,10 @@
<Compile Include="Functions\AppcastReader.cs" />
<Compile Include="Functions\QueryParser.cs" />
<Compile Include="Program.cs" />
- <Compile Include="TitleSpecificScan.cs">
+ <Compile Include="ToolWindows\TitleSpecificScan.cs">
<SubType>Form</SubType>
</Compile>
- <Compile Include="TitleSpecificScan.Designer.cs">
+ <Compile Include="ToolWindows\TitleSpecificScan.Designer.cs">
<DependentUpon>TitleSpecificScan.cs</DependentUpon>
</Compile>
<EmbeddedResource Include="Controls\AudioPanel.resx">
@@ -354,7 +354,7 @@
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
- <EmbeddedResource Include="TitleSpecificScan.resx">
+ <EmbeddedResource Include="ToolWindows\TitleSpecificScan.resx">
<DependentUpon>TitleSpecificScan.cs</DependentUpon>
</EmbeddedResource>
<None Include="app.config" />
@@ -475,6 +475,7 @@
<Name>HandBrake.ApplicationServices</Name>
</ProjectReference>
</ItemGroup>
+ <ItemGroup />
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
diff --git a/win/C#/TitleSpecificScan.Designer.cs b/win/C#/ToolWindows/TitleSpecificScan.Designer.cs
index 01955c04a..05fb0734c 100644
--- a/win/C#/TitleSpecificScan.Designer.cs
+++ b/win/C#/ToolWindows/TitleSpecificScan.Designer.cs
@@ -1,4 +1,4 @@
-namespace Handbrake
+namespace Handbrake.ToolWindows
{
partial class TitleSpecificScan
{
diff --git a/win/C#/TitleSpecificScan.cs b/win/C#/ToolWindows/TitleSpecificScan.cs
index 57e8f0d0c..6c938342e 100644
--- a/win/C#/TitleSpecificScan.cs
+++ b/win/C#/ToolWindows/TitleSpecificScan.cs
@@ -3,7 +3,7 @@
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
-namespace Handbrake
+namespace Handbrake.ToolWindows
{
using System;
using System.Windows.Forms;
diff --git a/win/C#/TitleSpecificScan.resx b/win/C#/ToolWindows/TitleSpecificScan.resx
index ff217dc4f..ff217dc4f 100644
--- a/win/C#/TitleSpecificScan.resx
+++ b/win/C#/ToolWindows/TitleSpecificScan.resx
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 2489c8e3a..ba06ede79 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -22,6 +22,8 @@ namespace Handbrake
using HandBrake.ApplicationServices.Services;
using HandBrake.ApplicationServices.Services.Interfaces;
+ using Handbrake.ToolWindows;
+
using Model;
using Presets;
using Properties;