summaryrefslogtreecommitdiffstats
path: root/tools/porting/src/preprocessorcontrol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/porting/src/preprocessorcontrol.cpp')
-rw-r--r--tools/porting/src/preprocessorcontrol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/porting/src/preprocessorcontrol.cpp b/tools/porting/src/preprocessorcontrol.cpp
index 673ed08..31adc32 100644
--- a/tools/porting/src/preprocessorcontrol.cpp
+++ b/tools/porting/src/preprocessorcontrol.cpp
@@ -154,7 +154,7 @@ QByteArray PreprocessorCache::readFile(const QString &filename) const
// read the file for us.
if (receivers(SIGNAL(readFile(QByteArray&,QString))) > 0) {
QByteArray array;
- // Workaround for "not beeing able to emit from const function"
+ // Workaround for "not being able to emit from const function"
PreprocessorCache *cache = const_cast<PreprocessorCache *>(this);
emit cache->readFile(array, filename);
return array;