summaryrefslogtreecommitdiffstats
path: root/sw/source
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2011-09-19 11:34:37 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2011-09-20 09:55:21 +0900
commit2defcfa33e86150ac936cc8a9a8edb1dcb242b5b (patch)
treebe000d0032ff36178181fecf5cbd64f4a15c4741 /sw/source
parentsal_True to true. (diff)
downloadcore-2defcfa33e86150ac936cc8a9a8edb1dcb242b5b.tar.gz
core-2defcfa33e86150ac936cc8a9a8edb1dcb242b5b.zip
removed an assignment in no use
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/core/undo/unredln.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/undo/unredln.cxx b/sw/source/core/undo/unredln.cxx
index c0879af65aa5..bbb75dd82467 100644
--- a/sw/source/core/undo/unredln.cxx
+++ b/sw/source/core/undo/unredln.cxx
@@ -162,7 +162,7 @@ void SwUndoRedline::RedoRedlineImpl(SwDoc & rDoc, SwPaM & rPam)
// SwUndoRedlineDelete ///////////////////////////////////////////////////
SwUndoRedlineDelete::SwUndoRedlineDelete( const SwPaM& rRange, SwUndoId nUsrId )
- : SwUndoRedline( nUsrId = (nUsrId ? nUsrId : UNDO_DELETE), rRange ),
+ : SwUndoRedline( nUsrId ? nUsrId : UNDO_DELETE, rRange ),
bCanGroup( sal_False ), bIsDelim( sal_False ), bIsBackspace( sal_False )
{
const SwTxtNode* pTNd;