Kaydet (Commit) 438f5b9f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror=unused-variable (MinGW, extensions)

Change-Id: I43c2ad4a601ffe20f471d81ed7697b89c496fa6f
üst fbba4781
......@@ -90,7 +90,9 @@ PluginComm_Impl::PluginComm_Impl( const OUString& /*rMIME*/, const OUString& rNa
_NPPfuncs.version = 0;
NPError nErr = (*pEntry)( &_NPPfuncs );
DBG_ASSERT( nErr == NPERR_NO_ERROR, "### NP_GetEntryPoints() failed!" );
SAL_WARN_IF(
nErr != NPERR_NO_ERROR, "extensions.plugin",
"NP_GetEntryPoints() failed");
DBG_ASSERT( (_NPPfuncs.version >> 8) >= NP_VERSION_MAJOR,
"### version failure!" );
......
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