diff options
Diffstat (limited to 'desktop/source/lib/init.cxx')
-rw-r--r-- | desktop/source/lib/init.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 99c3f997ae68..7190b030ea9a 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -2075,7 +2075,7 @@ static void doc_paintPartTile(LibreOfficeKitDocument* pThis, { if (pViewShell->getPart() == nPart) { - nViewId = (sal_Int32)pViewShell->GetViewShellId(); + nViewId = static_cast<sal_Int32>(pViewShell->GetViewShellId()); doc_setView(pThis, nViewId); break; } @@ -2636,7 +2636,7 @@ static char* getFonts (const char* pCommand) while (pAry[nSizeCount]) { boost::property_tree::ptree aChild; - aChild.put("", (float)pAry[nSizeCount] / 10); + aChild.put("", static_cast<float>(pAry[nSizeCount]) / 10); aChildren.push_back(std::make_pair("", aChild)); nSizeCount++; } |