Kaydet (Commit) 385e6e50 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-parameter

Change-Id: I85fbbb3aa9e8f124fddfdc46655e59e12d761f71
üst ffaaf352
...@@ -866,6 +866,8 @@ static sal_Int32 CountDPIScaleFactor(sal_Int32 nDPI) ...@@ -866,6 +866,8 @@ static sal_Int32 CountDPIScaleFactor(sal_Int32 nDPI)
// screen hi-dpi to greater than 168 // screen hi-dpi to greater than 168
if (nDPI > 168) if (nDPI > 168)
nResult = std::max(sal_Int32(1), (nDPI + 48) / 96); nResult = std::max(sal_Int32(1), (nDPI + 48) / 96);
#else
(void)nDPI;
#endif #endif
return nResult; return nResult;
......
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