diff options
author | Jerome Pasion <jerome.pasion@nokia.com> | 2010-08-30 15:53:48 (GMT) |
---|---|---|
committer | Jerome Pasion <jerome.pasion@nokia.com> | 2010-08-30 15:53:48 (GMT) |
commit | 8b2fdaf81ed4c52a75fe3a160c20f76a4eaf1d2b (patch) | |
tree | ea6de85c9fee2cc7e1ece555793b2483177fb6cf /tools/porting/src/rpp.cpp | |
parent | be69c316c56379d2b955491ffc54754018079dec (diff) | |
download | Qt-8b2fdaf81ed4c52a75fe3a160c20f76a4eaf1d2b.zip Qt-8b2fdaf81ed4c52a75fe3a160c20f76a4eaf1d2b.tar.gz Qt-8b2fdaf81ed4c52a75fe3a160c20f76a4eaf1d2b.tar.bz2 |
Fixed spelling, broken links, and missing default values.
Tasks: QTBUG-13271, QTBUG-13212, QTBUG-12321
Reviewer: David Boddie
Diffstat (limited to 'tools/porting/src/rpp.cpp')
-rw-r--r-- | tools/porting/src/rpp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/porting/src/rpp.cpp b/tools/porting/src/rpp.cpp index 7b0bea1..2e2aa97 100644 --- a/tools/porting/src/rpp.cpp +++ b/tools/porting/src/rpp.cpp @@ -60,7 +60,7 @@ Source *Preprocessor::parse(const TokenEngine::TokenContainer &tokenContainer, const QVector<Type> &tokenTypeList, TypedPool<Item> *memoryPool) { m_memoryPool = memoryPool; - Source *m_source = createNode<Source>(m_memoryPool); //node whith no parent + Source *m_source = createNode<Source>(m_memoryPool); //node with no parent m_tokenContainer = tokenContainer; m_tokenTypeList = tokenTypeList; lexerTokenIndex = 0; @@ -538,7 +538,7 @@ bool Preprocessor::parsePragmaDirective(Item *group) } /* Reads a preprocessor line from the source by advancing lexerTokenIndex and - returing a TokenSection containg the read line. Text lines separated by + returning a TokenSection containing the read line. Text lines separated by an escaped newline are joined. */ TokenSection Preprocessor::readLine() |