summaryrefslogtreecommitdiff
path: root/svx/source/form/fmshell.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/form/fmshell.cxx')
-rw-r--r--svx/source/form/fmshell.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/form/fmshell.cxx b/svx/source/form/fmshell.cxx
index 273aca1f58c1..30b0a238241e 100644
--- a/svx/source/form/fmshell.cxx
+++ b/svx/source/form/fmshell.cxx
@@ -753,7 +753,7 @@ void FmFormShell::Execute(SfxRequest &rReq)
{
const SfxInt32Item* pTypedItem = PTR_CAST( SfxInt32Item, pItem );
if ( pTypedItem )
- nRecord = Max( pTypedItem->GetValue(), sal_Int32(0) );
+ nRecord = std::max( pTypedItem->GetValue(), sal_Int32(0) );
}
}
else