Kaydet (Commit) 2c2bafee authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:cstylecast: deal with remaining pointer casts

Change-Id: I8c84f0f6aeb38147432ce5393b0286c379c6e135
üst 30b089fe
......@@ -128,7 +128,7 @@ OUString AttributeList::getValueByName(const OUString& sName) throw (RuntimeExce
Reference< XCloneable > AttributeList::createClone() throw (RuntimeException, std::exception)
{
AttributeList *p = new AttributeList( *this );
return Reference< XCloneable > ( (XCloneable * ) p );
return Reference< XCloneable > ( static_cast<XCloneable *>(p) );
}
......
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