Author: gedmurphy Date: Wed Feb 3 12:36:49 2010 New Revision: 45389
URL: http://svn.reactos.org/svn/reactos?rev=45389&view=rev Log: Fix typo in vcproj generator code
Modified: trunk/reactos/tools/rbuild/backend/msvc/msvc.cpp
Modified: trunk/reactos/tools/rbuild/backend/msvc/msvc.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/backend/msvc/m... ============================================================================== --- trunk/reactos/tools/rbuild/backend/msvc/msvc.cpp [iso-8859-1] (original) +++ trunk/reactos/tools/rbuild/backend/msvc/msvc.cpp [iso-8859-1] Wed Feb 3 12:36:49 2010 @@ -140,13 +140,13 @@
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 );