summaryrefslogtreecommitdiff
path: root/sw/source/core/layout/colfrm.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-08-12 11:30:06 +0000
committerOliver Bolte <obo@openoffice.org>2004-08-12 11:30:06 +0000
commitb4cad68374728587e05a289c08860bbb3afa7595 (patch)
tree4dc9b9cdb54c3a2b6cd34cee5e666d357e0c501f /sw/source/core/layout/colfrm.cxx
parent0ab05849837e3c9d6369e49d3de611ecfce94782 (diff)
INTEGRATION: CWS tune05 (1.12.232); FILE MERGED
2004/06/24 10:36:54 cmc 1.12.232.1: #i30554# make lcl_foos static to emphasis their lclness
Diffstat (limited to 'sw/source/core/layout/colfrm.cxx')
-rw-r--r--sw/source/core/layout/colfrm.cxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/sw/source/core/layout/colfrm.cxx b/sw/source/core/layout/colfrm.cxx
index 4cb35cfbd21d..22f3979b4745 100644
--- a/sw/source/core/layout/colfrm.cxx
+++ b/sw/source/core/layout/colfrm.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: colfrm.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: hr $ $Date: 2004-08-02 13:07:09 $
+ * last change: $Author: obo $ $Date: 2004-08-12 12:30:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,9 +59,6 @@
*
************************************************************************/
-
-#pragma hdrstop
-
#include <hintids.hxx>
#include "cntfrm.hxx"
#include "doc.hxx"
@@ -177,7 +174,7 @@ SwLayoutFrm * MA_FASTCALL lcl_FindColumns( SwLayoutFrm *pLay, USHORT nCount )
}
-BOOL MA_FASTCALL lcl_AddColumns( SwLayoutFrm *pCont, USHORT nCount )
+static BOOL lcl_AddColumns( SwLayoutFrm *pCont, USHORT nCount )
{
SwDoc *pDoc = pCont->GetFmt()->GetDoc();
const BOOL bMod = pDoc->IsModified();
@@ -320,7 +317,7 @@ void SwLayoutFrm::ChgColumns( const SwFmtCol &rOld, const SwFmtCol &rNew,
else if( nOldNum < nNewNum )
{
USHORT nAdd = nNewNum - nOldNum;
- bAdjustAttributes = ::lcl_AddColumns( this, nAdd );
+ bAdjustAttributes = lcl_AddColumns( this, nAdd );
}
}