summaryrefslogtreecommitdiff
path: root/sw/source/ui/table
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2013-04-11 00:21:40 -0300
committerDavid Tardon <dtardon@redhat.com>2013-04-20 11:09:54 +0000
commit0f200cc30ea75fdce59f7bb6ae87ebc85729e2a4 (patch)
tree2e2c28f9500f81825cdadcbabd131da767ddbb49 /sw/source/ui/table
parent5414a3eecdb09be928313477792acfe1d3534645 (diff)
fdo#63154: Change Min/Max/Abs for std::min/max/abs
Now all these usages were removed from LO. Change-Id: I8a7233db20abdcdbb18428ad4004c78cc516a0e6 Reviewed-on: https://gerrit.libreoffice.org/3326 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'sw/source/ui/table')
-rw-r--r--sw/source/ui/table/swtablerep.cxx4
-rw-r--r--sw/source/ui/table/tabledlg.cxx6
-rw-r--r--sw/source/ui/table/tablemgr.cxx2
3 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/ui/table/swtablerep.cxx b/sw/source/ui/table/swtablerep.cxx
index 88d86a8447fb..578dd6d41306 100644
--- a/sw/source/ui/table/swtablerep.cxx
+++ b/sw/source/ui/table/swtablerep.cxx
@@ -173,10 +173,10 @@ sal_Bool SwTableRep::FillTabCols( SwTabCols& rTabCols ) const
}
// intercept rounding errors
- if(Abs((long)nOldLeft - (long)rTabCols.GetLeft()) < 3)
+ if(std::abs((long)nOldLeft - (long)rTabCols.GetLeft()) < 3)
rTabCols.SetLeft(nOldLeft);
- if(Abs((long)nOldRight - (long)rTabCols.GetRight()) < 3)
+ if(std::abs((long)nOldRight - (long)rTabCols.GetRight()) < 3)
rTabCols.SetRight(nOldRight);
if(GetRightSpace() >= 0 &&
diff --git a/sw/source/ui/table/tabledlg.cxx b/sw/source/ui/table/tabledlg.cxx
index bda054f21a85..0ad320473729 100644
--- a/sw/source/ui/table/tabledlg.cxx
+++ b/sw/source/ui/table/tabledlg.cxx
@@ -475,7 +475,7 @@ void SwFormatTablePage::Reset( const SfxItemSet& )
pTblData->GetWidth()), FUNIT_TWIP);
m_aWidthMF.SaveValue();
nSaveWidth = pTblData->GetWidth();
- nMinTableWidth = Min( nSaveWidth, nMinTableWidth );
+ nMinTableWidth = std::min( nSaveWidth, nMinTableWidth );
}
m_aWidthMF.SetRefValue(pTblData->GetSpace());
@@ -658,11 +658,11 @@ int SwFormatTablePage::DeactivatePage( SfxItemSet* _pSet )
}
if(nColSum != pTblData->GetWidth())
{
- SwTwips nMinWidth = Min( (long)MINLAY,
+ SwTwips nMinWidth = std::min( (long)MINLAY,
(long) (pTblData->GetWidth() /
pTblData->GetColCount() - 1));
SwTwips nDiff = nColSum - pTblData->GetWidth();
- while ( Abs(nDiff) > pTblData->GetColCount() + 1 )
+ while ( std::abs(nDiff) > pTblData->GetColCount() + 1 )
{
SwTwips nSub = nDiff / pTblData->GetColCount();
for( i = 0; i < pTblData->GetColCount(); i++)
diff --git a/sw/source/ui/table/tablemgr.cxx b/sw/source/ui/table/tablemgr.cxx
index 9bfe0a932464..720c5af468e6 100644
--- a/sw/source/ui/table/tablemgr.cxx
+++ b/sw/source/ui/table/tablemgr.cxx
@@ -147,7 +147,7 @@ void SwTableFUNC::SetColWidth(sal_uInt16 nNum, SwTwips nNewWidth )
aCols[ static_cast< sal_uInt16 >(GetRightSeparator(nNum-1)) ] -= nDiff;
}
else
- aCols.SetRight( Min( nNewWidth, aCols.GetRightMax()) );
+ aCols.SetRight( std::min( nNewWidth, aCols.GetRightMax()) );
pSh->StartAllAction();
pSh->SetTabCols( aCols, bCurrentOnly );