summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/docdesc.cxx
diff options
context:
space:
mode:
authorGuillaume Poussel <gpoussel@gmail.com>2011-02-07 20:21:18 +0100
committerCédric Bosdonnat <cedricbosdo@openoffice.org>2011-02-08 18:49:16 +0100
commit2b0f7be0e3e9da61bec7577f6adfe7015e903b97 (patch)
tree53643a5aec87f1c2a15496ae3eb1b4fc9d732548 /sw/source/core/doc/docdesc.cxx
parent43ac9d392c1e80706f0bae8f8c73cfe0dfb0ecf2 (diff)
Clean-up bogus comments in writer.
Diffstat (limited to 'sw/source/core/doc/docdesc.cxx')
-rw-r--r--sw/source/core/doc/docdesc.cxx13
1 files changed, 4 insertions, 9 deletions
diff --git a/sw/source/core/doc/docdesc.cxx b/sw/source/core/doc/docdesc.cxx
index 02667af13d5c..cf2de5b310c7 100644
--- a/sw/source/core/doc/docdesc.cxx
+++ b/sw/source/core/doc/docdesc.cxx
@@ -528,7 +528,6 @@ void SwDoc::PreDelPageDesc(SwPageDesc * pDel)
}
}
-// #116530#
void SwDoc::BroadcastStyleOperation(String rName, SfxStyleFamily eFamily,
USHORT nOp)
{
@@ -556,11 +555,9 @@ void SwDoc::DelPageDesc( USHORT i, BOOL bBroadcast )
SwPageDesc *pDel = aPageDescs[i];
- // -> #116530#
if (bBroadcast)
BroadcastStyleOperation(pDel->GetName(), SFX_STYLE_FAMILY_PAGE,
SFX_STYLESHEET_ERASED);
- // <- #116530#
if (DoesUndo())
{
@@ -583,7 +580,7 @@ void SwDoc::DelPageDesc( USHORT i, BOOL bBroadcast )
|*************************************************************************/
USHORT SwDoc::MakePageDesc( const String &rName, const SwPageDesc *pCpy,
- BOOL bRegardLanguage, BOOL bBroadcast) // #116530#
+ BOOL bRegardLanguage, BOOL bBroadcast)
{
SwPageDesc *pNew;
if( pCpy )
@@ -612,14 +609,12 @@ USHORT SwDoc::MakePageDesc( const String &rName, const SwPageDesc *pCpy,
}
aPageDescs.Insert( pNew, aPageDescs.Count() );
- // -> #116530#
if (bBroadcast)
BroadcastStyleOperation(rName, SFX_STYLE_FAMILY_PAGE,
SFX_STYLESHEET_CREATED);
- // <- #116530#
if (DoesUndo())
- AppendUndo(new SwUndoPageDescCreate(pNew, this)); // #116530#
+ AppendUndo(new SwUndoPageDescCreate(pNew, this));
SetModified();
return (aPageDescs.Count()-1);
@@ -901,12 +896,12 @@ SwPageDesc * SwDoc::GetPageDesc( const String & rName )
return aResult;
}
-void SwDoc::DelPageDesc( const String & rName, BOOL bBroadcast ) // #116530#
+void SwDoc::DelPageDesc( const String & rName, BOOL bBroadcast )
{
sal_uInt16 nI;
if (FindPageDesc(rName, &nI))
- DelPageDesc(nI, bBroadcast); // #116530#
+ DelPageDesc(nI, bBroadcast);
}
void SwDoc::ChgPageDesc( const String & rName, const SwPageDesc & rDesc)