summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/drawingbase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/oox/drawingbase.cxx')
-rw-r--r--sc/source/filter/oox/drawingbase.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/oox/drawingbase.cxx b/sc/source/filter/oox/drawingbase.cxx
index 4babd3468b89..92723180ffd7 100644
--- a/sc/source/filter/oox/drawingbase.cxx
+++ b/sc/source/filter/oox/drawingbase.cxx
@@ -38,13 +38,13 @@ using namespace ::oox::drawingml;
namespace {
/** Converts the passed 32-bit integer value from 1/100 mm to EMUs. */
-inline sal_Int64 lclHmmToEmu( sal_Int32 nValue )
+sal_Int64 lclHmmToEmu( sal_Int32 nValue )
{
return (nValue < 0) ? -1 : convertHmmToEmu( nValue );
}
/** Converts the passed 64-bit integer value from EMUs to 1/100 mm. */
-inline sal_Int32 lclEmuToHmm( sal_Int64 nValue )
+sal_Int32 lclEmuToHmm( sal_Int64 nValue )
{
return (nValue < 0) ? -1 : convertEmuToHmm( nValue );
}