diff options
author | Brad King <brad.king@kitware.com> | 2019-10-01 15:03:14 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-10-01 15:06:22 (GMT) |
commit | ec16afc9e8aed8aebd387c416af5b5eef4ad337a (patch) | |
tree | be6d5499b40bdabc602fda72eb9b0f6f150a3ece /Source | |
parent | 7ad49fa3339dd25c53b4166a8aa12fcf59cf4dad (diff) | |
parent | ab06de68c54710136d50509833b2be937adba5c8 (diff) | |
download | CMake-ec16afc9e8aed8aebd387c416af5b5eef4ad337a.zip CMake-ec16afc9e8aed8aebd387c416af5b5eef4ad337a.tar.gz CMake-ec16afc9e8aed8aebd387c416af5b5eef4ad337a.tar.bz2 |
Merge topic 'typos'
ab06de68c5 Help: fixed typos in PCH / Unity Build doc
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3870
Diffstat (limited to 'Source')
-rw-r--r-- | Source/QtDialog/QCMake.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/QtDialog/QCMake.cxx b/Source/QtDialog/QCMake.cxx index ece3307..b608fcb 100644 --- a/Source/QtDialog/QCMake.cxx +++ b/Source/QtDialog/QCMake.cxx @@ -257,14 +257,14 @@ void QCMake::setProperties(const QCMakePropertyList& newProps) } } - // remove some properites + // remove some properties foreach (QString const& s, toremove) { this->CMakeInstance->UnwatchUnusedCli(s.toLocal8Bit().data()); state->RemoveCacheEntry(s.toLocal8Bit().data()); } - // add some new properites + // add some new properties foreach (QCMakeProperty const& s, props) { this->CMakeInstance->WatchUnusedCli(s.Key.toLocal8Bit().data()); |