Fix typo in vcproj generator code

svn path=/trunk/; revision=45389
This commit is contained in:
Ged Murphy 2010-02-03 11:36:49 +00:00
parent 6ae884e3c9
commit ce1b8768d1

View file

@ -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 );