summaryrefslogtreecommitdiff
path: root/sw/source/ui/chrdlg/numpara.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-09-27 09:19:57 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-09-27 09:19:57 +0000
commit1a8e97d39186772dbe78b91bc95ba8f1391e3e22 (patch)
tree68d37f050ff7725dc08cbf8a5d7fea2189c1495e /sw/source/ui/chrdlg/numpara.cxx
parent4305ceeeb500b931016d25d60d221b391b6443ac (diff)
INTEGRATION: CWS swwarnings (1.10.222); FILE MERGED
2007/05/29 12:03:23 os 1.10.222.3: RESYNC: (1.10-1.11); FILE MERGED 2007/04/03 13:01:01 tl 1.10.222.2: #i69287# warning-free code 2007/03/26 12:08:48 tl 1.10.222.1: #i69287# warning-free code
Diffstat (limited to 'sw/source/ui/chrdlg/numpara.cxx')
-rw-r--r--sw/source/ui/chrdlg/numpara.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/chrdlg/numpara.cxx b/sw/source/ui/chrdlg/numpara.cxx
index 14f2ddafe273..281432492250 100644
--- a/sw/source/ui/chrdlg/numpara.cxx
+++ b/sw/source/ui/chrdlg/numpara.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: numpara.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2007-04-26 08:50:50 $
+ * last change: $Author: hr $ $Date: 2007-09-27 10:19:57 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -182,8 +182,8 @@ BOOL SwParagraphNumTabPage::FillItemSet( SfxItemSet& rSet )
aRestartNF.GetSavedValue() != aRestartNF.GetText() )
{
SwFmtLineNumber aFmt;
- aFmt.SetStartValue( aRestartParaCountCB.GetState() == STATE_CHECK ?
- aRestartNF.GetValue() : 0 );
+ aFmt.SetStartValue( static_cast< ULONG >(aRestartParaCountCB.GetState() == STATE_CHECK ?
+ aRestartNF.GetValue() : 0 ));
aFmt.SetCountLines( aCountParaCB.IsChecked() );
rSet.Put(aFmt);
bModified = TRUE;
@@ -285,7 +285,7 @@ void SwParagraphNumTabPage::EnableNewStart()
/*-----------------31.01.98 08:56-------------------
--------------------------------------------------*/
-IMPL_LINK( SwParagraphNumTabPage, NewStartHdl_Impl, CheckBox*, pBox )
+IMPL_LINK( SwParagraphNumTabPage, NewStartHdl_Impl, CheckBox*, EMPTYARG )
{
BOOL bEnable = aNewStartCB.IsChecked();
aNewStartNumberCB.Enable(bEnable);