summaryrefslogtreecommitdiffstats
path: root/Source/cmQtAutoGenerators.cxx
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2017-02-15 10:01:31 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2017-02-19 11:35:43 (GMT)
commitb2063fd70fa6955acb2b9f02507097d03e2011a7 (patch)
treed490c31093493c873ff9dccf2c273eeea8d8ee55 /Source/cmQtAutoGenerators.cxx
parent10beb4a0345f673feaeec798d452a48797c6820a (diff)
downloadCMake-b2063fd70fa6955acb2b9f02507097d03e2011a7.zip
CMake-b2063fd70fa6955acb2b9f02507097d03e2011a7.tar.gz
CMake-b2063fd70fa6955acb2b9f02507097d03e2011a7.tar.bz2
Autogen: Move method declarations; Remove comments
Diffstat (limited to 'Source/cmQtAutoGenerators.cxx')
-rw-r--r--Source/cmQtAutoGenerators.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx
index 6896ba4..fcaf43d 100644
--- a/Source/cmQtAutoGenerators.cxx
+++ b/Source/cmQtAutoGenerators.cxx
@@ -688,7 +688,6 @@ bool cmQtAutoGenerators::MocRequired(const std::string& text,
*/
bool cmQtAutoGenerators::MocSkip(const std::string& absFilename)
{
- // Test if moc scanning is enabled
if (this->MocEnabled()) {
// Test if the file name is on the skip list
if (!ListContains(this->MocSkipList, absFilename)) {
@@ -703,7 +702,6 @@ bool cmQtAutoGenerators::MocSkip(const std::string& absFilename)
*/
bool cmQtAutoGenerators::UicSkip(const std::string& absFilename)
{
- // Test if uic scanning is enabled
if (this->UicEnabled()) {
// Test if the file name is on the skip list
if (!ListContains(this->UicSkipList, absFilename)) {
@@ -747,7 +745,6 @@ void cmQtAutoGenerators::ParseContentForUic(
const std::string& absFilename, const std::string& contentsString,
std::map<std::string, std::vector<std::string> >& includedUis)
{
- // Process
if (this->Verbose) {
std::ostringstream err;
err << "AutoUic: Checking " << absFilename << "\n";
@@ -777,7 +774,6 @@ bool cmQtAutoGenerators::ParseContentForMoc(
const std::vector<std::string>& headerExtensions,
std::map<std::string, std::string>& includedMocs, bool relaxed)
{
- // Process
if (this->Verbose) {
std::ostringstream err;
err << "AutoMoc: Checking " << absFilename << "\n";
@@ -1019,7 +1015,7 @@ void cmQtAutoGenerators::ParseHeaders(
// Parse header content for MOC
if ((absHeadersMoc.find(headerName) != absHeadersMoc.end()) &&
(includedMocs.find(headerName) == includedMocs.end())) {
- // Process
+ // Log
if (this->Verbose) {
std::ostringstream err;
err << "AutoMoc: Checking " << headerName << "\n";