mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 23:22:57 +00:00
Fix typo in vcproj generator code
svn path=/trunk/; revision=45389
This commit is contained in:
parent
6ae884e3c9
commit
ce1b8768d1
1 changed files with 4 additions and 4 deletions
|
@ -140,13 +140,13 @@ void MSVCBackend::ProcessModules()
|
||||||
|
|
||||||
if (configuration.VSProjectVersion == "10.00")
|
if (configuration.VSProjectVersion == "10.00")
|
||||||
{
|
{
|
||||||
string vcproj_file = VcprojFileName(module);
|
string vcxproj_file = VcxprojFileName(module);
|
||||||
projMaker = new VCXProjMaker( configuration, m_configurations, vcproj_file );
|
projMaker = new VCXProjMaker( configuration, m_configurations, vcxproj_file );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
string vcxproj_file = VcxprojFileName(module);
|
string vcproj_file = VcprojFileName(module);
|
||||||
projMaker = new VCProjMaker( configuration, m_configurations, vcxproj_file );
|
projMaker = new VCProjMaker( configuration, m_configurations, vcproj_file );
|
||||||
}
|
}
|
||||||
|
|
||||||
projMaker->_generate_proj_file ( module );
|
projMaker->_generate_proj_file ( module );
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue