diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-05-07 11:52:28 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-05-07 11:53:05 +0300 |
commit | 1275a450c10d581e453f0d822d9d77b5bdf07d68 (patch) | |
tree | 080d59c2978e69bb1691efa1d405f7f0838023a5 | |
parent | 8d7791858ae09dc6185bf0b116a66c7580040b09 (diff) |
More of the same
Change-Id: I2e735a3534a7f374a550d5072359aca70494a547
-rw-r--r-- | compilerplugins/clang/vclwidgets.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/vclwidgets.cxx b/compilerplugins/clang/vclwidgets.cxx index ff5583236a0f..77a84769a27d 100644 --- a/compilerplugins/clang/vclwidgets.cxx +++ b/compilerplugins/clang/vclwidgets.cxx @@ -179,7 +179,7 @@ bool VCLWidgets::VisitCXXDestructorDecl(const CXXDestructorDecl* pCXXDestructorD if (foundVclPtrField && pCompoundStatement && pCompoundStatement->size() == 0) { report( DiagnosticsEngine::Warning, - "OutputDevice subclass with VclPtr field must call dispose() from it's destructor.", + "OutputDevice subclass with VclPtr field must call dispose() from its destructor.", pCXXDestructorDecl->getLocStart()) << pCXXDestructorDecl->getSourceRange(); return true; @@ -378,7 +378,7 @@ bool VCLWidgets::VisitFunctionDecl( const FunctionDecl* functionDecl ) if (!isDisposeCallingSuperclassDispose(pMethodDecl)) { report( DiagnosticsEngine::Warning, - "OutputDevice subclass dispose() method MUST call it's superclass dispose() as the last thing it does", + "OutputDevice subclass dispose() method MUST call dispose() of its superclass as the last thing it does", functionDecl->getLocStart()) << functionDecl->getSourceRange(); } |