Kaydet (Commit) 83f69a12 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:redundantcast: unotools

(after a to-be-committed improved loplugin:cstylecast would have rewritten the
C-style casts into static_casts)

Change-Id: If48db3f54130f3f9a57e4fdc90cd5023a6047cc7
üst 6dc2d257
......@@ -891,7 +891,7 @@ DateOrder LocaleDataWrapper::getDateOrder() const
aGuard.changeReadToWrite();
const_cast<LocaleDataWrapper*>(this)->getDateOrdersImpl();
}
return (DateOrder) nDateOrder;
return nDateOrder;
}
DateOrder LocaleDataWrapper::getLongDateOrder() const
......@@ -902,7 +902,7 @@ DateOrder LocaleDataWrapper::getLongDateOrder() const
aGuard.changeReadToWrite();
const_cast<LocaleDataWrapper*>(this)->getDateOrdersImpl();
}
return (DateOrder) nLongDateOrder;
return nLongDateOrder;
}
DateOrder LocaleDataWrapper::scanDateOrderImpl( const OUString& rCode ) const
......
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