Fix typo in vcproj generator code
authorGed Murphy <gedmurphy@reactos.org>
Wed, 3 Feb 2010 11:36:49 +0000 (11:36 +0000)
committerGed Murphy <gedmurphy@reactos.org>
Wed, 3 Feb 2010 11:36:49 +0000 (11:36 +0000)
svn path=/trunk/; revision=45389

reactos/tools/rbuild/backend/msvc/msvc.cpp

index 8ddf0cb..90aa37c 100644 (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 );