summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fuinsfil.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/func/fuinsfil.cxx')
-rw-r--r--sd/source/ui/func/fuinsfil.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/func/fuinsfil.cxx b/sd/source/ui/func/fuinsfil.cxx
index 821b156116e9..96de0c01aa15 100644
--- a/sd/source/ui/func/fuinsfil.cxx
+++ b/sd/source/ui/func/fuinsfil.cxx
@@ -516,8 +516,8 @@ void FuInsertFile::InsTextOrRTFinDrMode(SfxMedium* pMedium)
limit object size if necessary */
Size aSize(pOutliner->CalcTextSize());
Size aMaxSize = mpDoc->GetMaxObjSize();
- aSize.Height() = Min(aSize.Height(), aMaxSize.Height());
- aSize.Width() = Min(aSize.Width(), aMaxSize.Width());
+ aSize.Height() = std::min(aSize.Height(), aMaxSize.Height());
+ aSize.Width() = std::min(aSize.Width(), aMaxSize.Width());
aSize = mpWindow->LogicToPixel(aSize);
// put it at the center of the window