ssg: rename Paths -> Paths1
This commit is contained in:
parent
5c71216067
commit
6bb325d36c
|
@ -526,33 +526,33 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
|
||||||
}
|
}
|
||||||
|
|
||||||
// Go to next step
|
// Go to next step
|
||||||
AddStaticSitePathsSubStep();
|
AddStaticSitePaths1SubStep();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AddStaticSitePathsSubStep()
|
private void AddStaticSitePaths1SubStep()
|
||||||
{
|
{
|
||||||
addWizardSubStep(
|
addWizardSubStep(
|
||||||
new WizardSubStep(new WeblogConfigurationWizardPanelStaticSitePaths(),
|
new WizardSubStep(new WeblogConfigurationWizardPanelStaticSitePaths1(),
|
||||||
null,
|
null,
|
||||||
new DisplayCallback(OnStaticSitePathsDisplayed),
|
new DisplayCallback(OnStaticSitePaths1Displayed),
|
||||||
new VerifyStepCallback(OnValidatePanel),
|
new VerifyStepCallback(OnValidatePanel),
|
||||||
new NextCallback(OnStaticSitePathsCompleted),
|
new NextCallback(OnStaticSitePaths1Completed),
|
||||||
null,
|
null,
|
||||||
new BackCallback(OnStaticSiteBack)));
|
new BackCallback(OnStaticSiteBack)));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnStaticSitePathsDisplayed(Object stepControl)
|
private void OnStaticSitePaths1Displayed(Object stepControl)
|
||||||
{
|
{
|
||||||
// Populate data
|
// Populate data
|
||||||
var panel = (stepControl as WeblogConfigurationWizardPanelStaticSitePaths);
|
var panel = (stepControl as WeblogConfigurationWizardPanelStaticSitePaths1);
|
||||||
|
|
||||||
// Load panel values from config
|
// Load panel values from config
|
||||||
panel.LoadFromConfig(staticSiteConfig);
|
panel.LoadFromConfig(staticSiteConfig);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnStaticSitePathsCompleted(Object stepControl)
|
private void OnStaticSitePaths1Completed(Object stepControl)
|
||||||
{
|
{
|
||||||
var panel = (stepControl as WeblogConfigurationWizardPanelStaticSitePaths);
|
var panel = (stepControl as WeblogConfigurationWizardPanelStaticSitePaths1);
|
||||||
|
|
||||||
// Save panel values into config
|
// Save panel values into config
|
||||||
panel.SaveToConfig(staticSiteConfig);
|
panel.SaveToConfig(staticSiteConfig);
|
||||||
|
|
|
@ -24,7 +24,7 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Summary description for WelcomeToBlogControl.
|
/// Summary description for WelcomeToBlogControl.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal class WeblogConfigurationWizardPanelStaticSitePaths : WeblogConfigurationWizardPanel, IWizardPanelStaticSiteConfigProvider
|
internal class WeblogConfigurationWizardPanelStaticSitePaths1 : WeblogConfigurationWizardPanel, IWizardPanelStaticSiteConfigProvider
|
||||||
{
|
{
|
||||||
private System.Windows.Forms.Label labelPostsPath;
|
private System.Windows.Forms.Label labelPostsPath;
|
||||||
private System.Windows.Forms.TextBox textBoxPostsPath;
|
private System.Windows.Forms.TextBox textBoxPostsPath;
|
||||||
|
@ -46,7 +46,7 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private Container components = null;
|
private Container components = null;
|
||||||
|
|
||||||
public WeblogConfigurationWizardPanelStaticSitePaths()
|
public WeblogConfigurationWizardPanelStaticSitePaths1()
|
||||||
{
|
{
|
||||||
// This call is required by the Windows.Forms Form Designer.
|
// This call is required by the Windows.Forms Form Designer.
|
||||||
InitializeComponent();
|
InitializeComponent();
|
|
@ -304,7 +304,7 @@
|
||||||
<Compile Include="Configuration\Wizard\WeblogConfigurationWizardPanelAutoDetection.cs">
|
<Compile Include="Configuration\Wizard\WeblogConfigurationWizardPanelAutoDetection.cs">
|
||||||
<SubType>UserControl</SubType>
|
<SubType>UserControl</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Configuration\Wizard\WeblogConfigurationWizardPanelStaticSitePaths.cs">
|
<Compile Include="Configuration\Wizard\WeblogConfigurationWizardPanelStaticSitePaths1.cs">
|
||||||
<SubType>UserControl</SubType>
|
<SubType>UserControl</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Configuration\Wizard\WeblogConfigurationWizardPanelStaticSiteInitial.cs">
|
<Compile Include="Configuration\Wizard\WeblogConfigurationWizardPanelStaticSiteInitial.cs">
|
||||||
|
@ -1042,8 +1042,8 @@
|
||||||
<DependentUpon>WeblogConfigurationWizardPanelAutoDetection.cs</DependentUpon>
|
<DependentUpon>WeblogConfigurationWizardPanelAutoDetection.cs</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Configuration\Wizard\WeblogConfigurationWizardPanelStaticSitePaths.resx">
|
<EmbeddedResource Include="Configuration\Wizard\WeblogConfigurationWizardPanelStaticSitePaths1.resx">
|
||||||
<DependentUpon>WeblogConfigurationWizardPanelStaticSitePaths.cs</DependentUpon>
|
<DependentUpon>WeblogConfigurationWizardPanelStaticSitePaths1.cs</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Configuration\Wizard\WeblogConfigurationWizardPanelStaticSiteInitial.resx">
|
<EmbeddedResource Include="Configuration\Wizard\WeblogConfigurationWizardPanelStaticSiteInitial.resx">
|
||||||
|
|
Loading…
Reference in New Issue