diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-06-08 14:40:57 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-06-08 14:40:57 (GMT) |
commit | 5b02bcf682d8ed851f4733c5af61c471cf00296b (patch) | |
tree | 1dcc0235d6608b69f7d09c5a135b34b2949c76f5 /Source/QtDialog | |
parent | 2d1c05c1669efa9eeba6f8606c47f92a3b880920 (diff) | |
download | CMake-5b02bcf682d8ed851f4733c5af61c471cf00296b.zip CMake-5b02bcf682d8ed851f4733c5af61c471cf00296b.tar.gz CMake-5b02bcf682d8ed851f4733c5af61c471cf00296b.tar.bz2 |
QtDialog/FirstConfigure: remove 'return' from void expression
Diffstat (limited to 'Source/QtDialog')
-rw-r--r-- | Source/QtDialog/FirstConfigure.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/QtDialog/FirstConfigure.cxx b/Source/QtDialog/FirstConfigure.cxx index b193a27..88ce7cb 100644 --- a/Source/QtDialog/FirstConfigure.cxx +++ b/Source/QtDialog/FirstConfigure.cxx @@ -301,7 +301,7 @@ QString CrossCompilerSetup::getFindRoot() const void CrossCompilerSetup::setFindRoot(const QString& t) { - return this->crossFindRoot->setText(t); + this->crossFindRoot->setText(t); } int CrossCompilerSetup::getProgramMode() const |