summaryrefslogtreecommitdiffstats
path: root/Source/cmQtAutomoc.cxx
diff options
context:
space:
mode:
authorAndreas Mohr <andim2@users.sourceforge.net>2012-11-07 16:13:09 (GMT)
committerBrad King <brad.king@kitware.com>2013-05-07 12:39:19 (GMT)
commitbf019d765d3993ba265c990a6e3a2e53defe112c (patch)
tree828aad55a12f323a8f69e0c4cdfcfe79b02112ec /Source/cmQtAutomoc.cxx
parentddac8d3d2d027dd50d729918078f57628855a568 (diff)
downloadCMake-bf019d765d3993ba265c990a6e3a2e53defe112c.zip
CMake-bf019d765d3993ba265c990a6e3a2e53defe112c.tar.gz
CMake-bf019d765d3993ba265c990a6e3a2e53defe112c.tar.bz2
Fix spelling and typos (non-binary)
Diffstat (limited to 'Source/cmQtAutomoc.cxx')
-rw-r--r--Source/cmQtAutomoc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmQtAutomoc.cxx b/Source/cmQtAutomoc.cxx
index a1fa31f..9783ce9 100644
--- a/Source/cmQtAutomoc.cxx
+++ b/Source/cmQtAutomoc.cxx
@@ -696,7 +696,7 @@ void cmQtAutomoc::ParseCppFile(const std::string& absFilename,
std::string ownMocHeaderFile;
std::string::size_type matchOffset = 0;
- // first a simply string check for "moc" is *much* faster than the regexp,
+ // first a simple string check for "moc" is *much* faster than the regexp,
// and if the string search already fails, we don't have to try the
// expensive regexp
if ((strstr(contentsString.c_str(), "moc") != NULL)
@@ -870,7 +870,7 @@ void cmQtAutomoc::StrictParseCppFile(const std::string& absFilename,
bool dotMocIncluded = false;
std::string::size_type matchOffset = 0;
- // first a simply string check for "moc" is *much* faster than the regexp,
+ // first a simple string check for "moc" is *much* faster than the regexp,
// and if the string search already fails, we don't have to try the
// expensive regexp
if ((strstr(contentsString.c_str(), "moc") != NULL)