Kaydet (Commit) 92d4e930 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Replace SAL_FINAL with final in internal code

Change-Id: Ib0d3324d7021ba1a8ff9779807d0a900be5e6226
Reviewed-on: https://gerrit.libreoffice.org/60802
Tested-by: Jenkins
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst be30b761
...@@ -95,7 +95,7 @@ bool FragileDestructor::VisitCXXMemberCallExpr(const CXXMemberCallExpr* callExpr ...@@ -95,7 +95,7 @@ bool FragileDestructor::VisitCXXMemberCallExpr(const CXXMemberCallExpr* callExpr
return true; return true;
report( report(
DiagnosticsEngine::Warning, DiagnosticsEngine::Warning,
"calling virtual method from destructor, either make the virtual method SAL_FINAL, or make this class SAL_FINAL", "calling virtual method from destructor, either make the virtual method final, or make this class final",
compat::getBeginLoc(callExpr)) compat::getBeginLoc(callExpr))
<< callExpr->getSourceRange(); << callExpr->getSourceRange();
report( report(
......
...@@ -206,7 +206,7 @@ public: ...@@ -206,7 +206,7 @@ public:
// private methods // private methods
private: private:
virtual void ImplCommit() SAL_FINAL override; virtual void ImplCommit() final override;
static Sequence< OUString > impl_GetPropertyNames(); static Sequence< OUString > impl_GetPropertyNames();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment