diff options
author | Brad King <brad.king@kitware.com> | 2013-11-19 21:27:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-11-19 23:12:58 (GMT) |
commit | 6fc4ab9b28054a0d2f6c5fc63ddd860eeed1ac64 (patch) | |
tree | 02f041f2339fdadc00f29d4e462dfc1faf9a1273 /Source/QtDialog | |
parent | e776a2dae4fe7dd6d20f15ec488019b95a9d648f (diff) | |
download | CMake-6fc4ab9b28054a0d2f6c5fc63ddd860eeed1ac64.zip CMake-6fc4ab9b28054a0d2f6c5fc63ddd860eeed1ac64.tar.gz CMake-6fc4ab9b28054a0d2f6c5fc63ddd860eeed1ac64.tar.bz2 |
Credit Kitware and csimsoft for their maintenance roles
Add maintenance credit to command-line "--version" output and the
cmake-gui "About" dialog.
Diffstat (limited to 'Source/QtDialog')
-rw-r--r-- | Source/QtDialog/CMakeSetupDialog.cxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx index a7665c8..d482852 100644 --- a/Source/QtDialog/CMakeSetupDialog.cxx +++ b/Source/QtDialog/CMakeSetupDialog.cxx @@ -807,10 +807,14 @@ void CMakeSetupDialog::doDeleteCache() void CMakeSetupDialog::doAbout() { - QString msg = tr("CMake %1\n" - "Using Qt %2\n" - "www.cmake.org"); - + QString msg = tr( + "CMake %1 (cmake.org).\n" + "CMake suite maintained by Kitware, Inc. (kitware.com).\n" + "Distributed under terms of the BSD 3-Clause License.\n" + "\n" + "CMake GUI maintained by csimsoft,\n" + "built using Qt %2 (qt-project.org).\n" + ); msg = msg.arg(cmVersion::GetCMakeVersion()); msg = msg.arg(qVersion()); |