summaryrefslogtreecommitdiff
path: root/svx/source/outliner
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-06-30 14:45:24 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-06-30 14:45:24 +0000
commit6ee710919beeef75acbff3db7ba23c34e861cfb4 (patch)
tree0b1e8232de7293c27cfb69ac75dd5ab6f78f26e6 /svx/source/outliner
parenteb8395864d56a1eb72f09eb49f640fc81cda9fe6 (diff)
INTEGRATION: CWS hub01 (1.8.264); FILE MERGED
2008/06/18 20:45:01 thb 1.8.264.2: RESYNC: (1.8-1.10); FILE MERGED 2008/01/16 18:09:03 hub 1.8.264.1: Issue number: 85274 Submitted by: hub Reviewed by: hub Fix warning from gcc 4.2.1 for empty else- statements.
Diffstat (limited to 'svx/source/outliner')
-rw-r--r--svx/source/outliner/paralist.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/svx/source/outliner/paralist.cxx b/svx/source/outliner/paralist.cxx
index 7291cb0a37..3e241e38ab 100644
--- a/svx/source/outliner/paralist.cxx
+++ b/svx/source/outliner/paralist.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: paralist.cxx,v $
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
* This file is part of OpenOffice.org.
*
@@ -114,7 +114,9 @@ void ParagraphList::MoveParagraphs( ULONG nStart, ULONG nDest, ULONG _nCount )
}
}
else
+ {
DBG_ERROR( "MoveParagraphs: Invalid Parameters" );
+ }
}
Paragraph* ParagraphList::NextVisible( Paragraph* pPara ) const