Browse Source

VS: Change variable type of Name from const char* to string

Patrick Gansterer 13 years ago
parent
commit
6920fed652
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/cmGlobalVisualStudio8Generator.h

+ 2 - 2
Source/cmGlobalVisualStudio8Generator.h

@@ -28,7 +28,7 @@ public:
   static cmGlobalGeneratorFactory* NewFactory();
   static cmGlobalGeneratorFactory* NewFactory();
 
 
   ///! Get the name for the generator.
   ///! Get the name for the generator.
-  virtual const char* GetName() const {return this->Name;}
+  virtual const char* GetName() const {return this->Name.c_str();}
 
 
   const char* GetPlatformName() const;
   const char* GetPlatformName() const;
 
 
@@ -82,7 +82,7 @@ protected:
   virtual void WriteProjectDepends(std::ostream& fout, const char* name,
   virtual void WriteProjectDepends(std::ostream& fout, const char* name,
                                    const char* path, cmTarget &t);
                                    const char* path, cmTarget &t);
 
 
-  const char* Name;
+  std::string Name;
 
 
 private:
 private:
   class Factory;
   class Factory;