diff options
author | Brad King <brad.king@kitware.com> | 2019-07-26 11:29:19 +0000 |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-07-26 07:32:18 -0400 |
commit | 467e6ac728cefa484f9e9369a7da4d05b04ec403 (patch) | |
tree | a5a22d30ca5ab813f3f8f4db40144a132005a68f /Source/cmQTWrapUICommand.cxx | |
parent | c23c4ed9cf912e265e1070507905b3dbc495a210 (diff) | |
parent | e91bfe440c1419b445ef6746552dd03ba302e6cf (diff) | |
download | cmake-467e6ac728cefa484f9e9369a7da4d05b04ec403.tar.gz |
Merge topic 'definitions_string_view'
e91bfe440c cmMakefile: Let AddDefinition accept a value as cm::string_view
f2ba968ef2 cmMakefile: Simplify and rename AddDefinitionBool
9b5cc42531 cmDefinitions: Remove const char* based Set method
e268840c0a cmDefinitions: Add Unset and cm::string_view based Set methods
451fd329a8 cmDefinitions: Cleanups
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3577
Diffstat (limited to 'Source/cmQTWrapUICommand.cxx')
-rw-r--r-- | Source/cmQTWrapUICommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmQTWrapUICommand.cxx b/Source/cmQTWrapUICommand.cxx index 2223e2d825..361d7b3bb9 100644 --- a/Source/cmQTWrapUICommand.cxx +++ b/Source/cmQTWrapUICommand.cxx @@ -132,7 +132,7 @@ bool cmQTWrapUICommand::InitialPass(std::vector<std::string> const& args, } // Store the final list of source files and headers. - this->Makefile->AddDefinition(sourceList, sourceListValue.c_str()); - this->Makefile->AddDefinition(headerList, headerListValue.c_str()); + this->Makefile->AddDefinition(sourceList, sourceListValue); + this->Makefile->AddDefinition(headerList, headerListValue); return true; } |