aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2011-02-02 10:44:44 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:13:52 -0300
commit103b62aa700fab042e41e612aeff27af9897057d (patch)
tree73f6830fd22ac31e5db6a381b794b189642a6f53
parent8d9d66484195501f7f9a57d527b39964b384bfde (diff)
Fixed a type on a warning about polymorphic-id-expression.
Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
-rw-r--r--generator/cppgenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/generator/cppgenerator.cpp b/generator/cppgenerator.cpp
index b7148017c..84a61f160 100644
--- a/generator/cppgenerator.cpp
+++ b/generator/cppgenerator.cpp
@@ -3505,7 +3505,7 @@ void CppGenerator::writeTypeDiscoveryFunction(QTextStream& s, const AbstractMeta
} else {
ReportHandler::warning(metaClass->qualifiedCppName() + " inherits from a non polymorphic type ("
+ ancestor->qualifiedCppName() + "), type discovery based on RTTI is "
- "impossible, write a polymorphic-id-expresison for this type.");
+ "impossible, write a polymorphic-id-expression for this type.");
}
}