summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-12-11 14:43:39 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-12-11 14:43:39 (GMT)
commite240a489c15a8cd09dc36f1ec8dcb8241aac7ed1 (patch)
tree744280b8c0c5a34063a8a0690a4337c54726883f
parent67afa4e407d133754cc2614b137311c35ef3dfca (diff)
parente0ad72d8af9bfba80d24f823d79440ebb9136bda (diff)
downloadCMake-e240a489c15a8cd09dc36f1ec8dcb8241aac7ed1.zip
CMake-e240a489c15a8cd09dc36f1ec8dcb8241aac7ed1.tar.gz
CMake-e240a489c15a8cd09dc36f1ec8dcb8241aac7ed1.tar.bz2
Merge topic 'graphviz-spaces'
e0ad72d8 Graphviz: Fix handling of spaces in GRAPHVIZ_GRAPH_NAME
-rw-r--r--Source/cmGraphVizWriter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGraphVizWriter.cxx b/Source/cmGraphVizWriter.cxx
index a63b6e3..448306f 100644
--- a/Source/cmGraphVizWriter.cxx
+++ b/Source/cmGraphVizWriter.cxx
@@ -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;
}