diff options
author | Brad King <brad.king@kitware.com> | 2015-12-11 14:43:39 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-12-11 14:43:39 (GMT) |
commit | e240a489c15a8cd09dc36f1ec8dcb8241aac7ed1 (patch) | |
tree | 744280b8c0c5a34063a8a0690a4337c54726883f | |
parent | 67afa4e407d133754cc2614b137311c35ef3dfca (diff) | |
parent | e0ad72d8af9bfba80d24f823d79440ebb9136bda (diff) | |
download | CMake-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.cxx | 2 |
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; } |