mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 20:36:26 +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")
|
||||
{
|
||||
string vcproj_file = VcprojFileName(module);
|
||||
projMaker = new VCXProjMaker( configuration, m_configurations, vcproj_file );
|
||||
string vcxproj_file = VcxprojFileName(module);
|
||||
projMaker = new VCXProjMaker( configuration, m_configurations, vcxproj_file );
|
||||
}
|
||||
else
|
||||
{
|
||||
string vcxproj_file = VcxprojFileName(module);
|
||||
projMaker = new VCProjMaker( configuration, m_configurations, vcxproj_file );
|
||||
string vcproj_file = VcprojFileName(module);
|
||||
projMaker = new VCProjMaker( configuration, m_configurations, vcproj_file );
|
||||
}
|
||||
|
||||
projMaker->_generate_proj_file ( module );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue