aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cppgenerator.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/cppgenerator.cpp b/cppgenerator.cpp
index 38972aefa..b79cbd91c 100644
--- a/cppgenerator.cpp
+++ b/cppgenerator.cpp
@@ -441,8 +441,7 @@ void CppGenerator::writeVirtualMethodNative(QTextStream &s, const AbstractMetaFu
Indentation indentation(INDENT);
if (func->isAbstract() && func->isModifiedRemoved()) {
- s << INDENT << "#warning Pure virtual method \"" << func->ownerClass()->name() << "::" << func->minimalSignature();
- s << "\" must be implement but was completely removed on typesystem." << endl;
+ ReportHandler::warning("Pure virtual method \"" + func->ownerClass()->name() + "::" + func->minimalSignature() + "\" must be implement but was completely removed on typesystem.");
s << INDENT << "return";
if (func->type()) {
s << ' ';