Kaydet (Commit) 863bfb28 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:cstylecast: deal with those that are (technically) const_cast

Change-Id: Ie8e3bde0eeeec6cd35a7f73f9a29c28cdd03ad02
üst 224c8aab
...@@ -1036,7 +1036,7 @@ javaFrameworkError jfw_existJRE(const JavaInfo *pInfo, sal_Bool *exist) ...@@ -1036,7 +1036,7 @@ javaFrameworkError jfw_existJRE(const JavaInfo *pInfo, sal_Bool *exist)
//get the function jfw_plugin_existJRE //get the function jfw_plugin_existJRE
jfw::VendorSettings aVendorSettings; jfw::VendorSettings aVendorSettings;
jfw::CJavaInfo aInfo; jfw::CJavaInfo aInfo;
aInfo = (const ::JavaInfo*) pInfo; //makes a copy of pInfo aInfo = pInfo; //makes a copy of pInfo
javaPluginError plerr = jfw_plugin_existJRE(pInfo, exist); javaPluginError plerr = jfw_plugin_existJRE(pInfo, exist);
javaFrameworkError ret = JFW_E_NONE; javaFrameworkError ret = JFW_E_NONE;
......
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