summaryrefslogtreecommitdiff
path: root/sw/source/core/fields/docufld.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/fields/docufld.cxx')
-rw-r--r--sw/source/core/fields/docufld.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/fields/docufld.cxx b/sw/source/core/fields/docufld.cxx
index eee6211c0328..7f0f2e953a26 100644
--- a/sw/source/core/fields/docufld.cxx
+++ b/sw/source/core/fields/docufld.cxx
@@ -2308,7 +2308,7 @@ void SwRefPageGetFieldType::UpdateField( SwTxtFld* pTxtFld,
? (sal_uInt32)SVX_NUM_ARABIC
: pPgFrm->GetPageDesc()->GetNumType().GetNumberingType() )
: pGetFld->GetFormat();
- short nPageNum = static_cast<short>(Max(0, pSetFld->GetOffset() + (short)nDiff));
+ short nPageNum = static_cast<short>(std::max(0, pSetFld->GetOffset() + (short)nDiff));
pGetFld->SetText( FormatNumber( nPageNum, nTmpFmt ) );
}
}
@@ -2395,7 +2395,7 @@ void SwRefPageGetField::ChangeExpansion( const SwFrm* pFrm,
sal_uInt32 nTmpFmt = SVX_NUM_PAGEDESC == pGetFld->GetFormat()
? pPgFrm->GetPageDesc()->GetNumType().GetNumberingType()
: pGetFld->GetFormat();
- short nPageNum = static_cast<short>(Max(0, pSetFld->GetOffset() + (short)nDiff ));
+ short nPageNum = static_cast<short>(std::max(0, pSetFld->GetOffset() + (short)nDiff ));
pGetFld->SetText( FormatNumber( nPageNum, nTmpFmt ) );
}
}