Merge topic 'graphviz-spaces'

e0ad72d8 Graphviz: Fix handling of spaces in GRAPHVIZ_GRAPH_NAME
This commit is contained in:
Brad King 2015-12-11 09:43:39 -05:00 committed by CMake Topic Stage
commit e240a489c1
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ void cmGraphVizWriter::WriteGlobalFile(const char* fileName)
void cmGraphVizWriter::WriteHeader(cmGeneratedFileStream& str) const
{
str << this->GraphType << " " << this->GraphName << " {" << std::endl;
str << this->GraphType << " \"" << this->GraphName << "\" {" << std::endl;
str << this->GraphHeader << std::endl;
}