summaryrefslogtreecommitdiff
path: root/sc/source/ui/pagedlg
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-02-27 12:37:47 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-02-27 12:37:47 +0000
commitef731ba450476af3c269f93f2593967eceed36e4 (patch)
treef4988d2cde293cefc1f1fdf5d3c89df7892d844a /sc/source/ui/pagedlg
parentd9180e91ff7f2b4d99c863e107048cdd485e5b15 (diff)
INTEGRATION: CWS calcwarnings (1.9.110); FILE MERGED
2007/02/19 16:07:16 nn 1.9.110.3: RESYNC: (1.9-1.10); FILE MERGED 2006/12/12 17:03:22 nn 1.9.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:38 nn 1.9.110.1: #i69284# warning-free: ui, wntmsci10
Diffstat (limited to 'sc/source/ui/pagedlg')
-rw-r--r--sc/source/ui/pagedlg/tptable.cxx44
1 files changed, 22 insertions, 22 deletions
diff --git a/sc/source/ui/pagedlg/tptable.cxx b/sc/source/ui/pagedlg/tptable.cxx
index fb2f1e8da68d..8580e2ba9aa4 100644
--- a/sc/source/ui/pagedlg/tptable.cxx
+++ b/sc/source/ui/pagedlg/tptable.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: tptable.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: obo $ $Date: 2007-01-23 11:47:16 $
+ * last change: $Author: vg $ $Date: 2007-02-27 13:37:47 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -129,6 +129,17 @@ ScTablePage::ScTablePage( Window* pParent, const SfxItemSet& rCoreAttrs ) :
SfxTabPage( pParent, ScResId( RID_SCPAGE_TABLE ), rCoreAttrs ),
+ aFlPageDir ( this, ScResId( FL_PAGEDIR ) ),
+ aBtnTopDown ( this, ScResId( BTN_TOPDOWN ) ),
+ aBtnLeftRight ( this, ScResId( BTN_LEFTRIGHT ) ),
+ aBmpPageDir ( this, ScResId( BMP_PAGEDIR ) ),
+ aImgLeftRight ( ScResId( IMG_LEFTRIGHT ) ),
+ aImgTopDown ( ScResId( IMG_TOPDOWN ) ),
+ aImgLeftRightHC ( ScResId( IMG_LEFTRIGHT_H ) ),
+ aImgTopDownHC ( ScResId( IMG_TOPDOWN_H ) ),
+ aBtnPageNo ( this, ScResId( BTN_PAGENO ) ),
+ aEdPageNo ( this, ScResId( ED_PAGENO ) ),
+ aFlPrint ( this, ScResId( FL_PRINT ) ),
aBtnHeaders ( this, ScResId( BTN_HEADER ) ),
aBtnGrid ( this, ScResId( BTN_GRID ) ),
aBtnNotes ( this, ScResId( BTN_NOTES ) ),
@@ -137,17 +148,6 @@ ScTablePage::ScTablePage( Window* pParent, const SfxItemSet& rCoreAttrs ) :
aBtnDrawings ( this, ScResId( BTN_DRAWINGS ) ),
aBtnFormulas ( this, ScResId( BTN_FORMULAS ) ),
aBtnNullVals ( this, ScResId( BTN_NULLVALS ) ),
- aFlPrint ( this, ScResId( FL_PRINT ) ),
- aBtnTopDown ( this, ScResId( BTN_TOPDOWN ) ),
- aBtnLeftRight ( this, ScResId( BTN_LEFTRIGHT ) ),
- aBmpPageDir ( this, ScResId( BMP_PAGEDIR ) ),
- aImgTopDown ( ScResId( IMG_TOPDOWN ) ),
- aImgLeftRight ( ScResId( IMG_LEFTRIGHT ) ),
- aImgTopDownHC ( ScResId( IMG_TOPDOWN_H ) ),
- aImgLeftRightHC ( ScResId( IMG_LEFTRIGHT_H ) ),
- aBtnPageNo ( this, ScResId( BTN_PAGENO ) ),
- aEdPageNo ( this, ScResId( ED_PAGENO ) ),
- aFlPageDir ( this, ScResId( FL_PAGEDIR ) ),
aFlScale ( this, ScResId( FL_SCALE ) ),
aFtScaleMode ( this, ScResId( FT_SCALEMODE ) ),
aLbScaleMode ( this, ScResId( LB_SCALEMODE ) ),
@@ -320,17 +320,17 @@ BOOL ScTablePage::FillItemSet( SfxItemSet& rCoreSet )
bDataChanged |= lcl_PutBoolItem( GetWhich(SID_SCATTR_PAGE_NOTES),
rCoreSet, rOldSet,
aBtnNotes.IsChecked(),
- aBtnNotes.GetSavedValue() );
+ aBtnNotes.GetSavedValue() != STATE_NOCHECK );
bDataChanged |= lcl_PutBoolItem( GetWhich(SID_SCATTR_PAGE_GRID),
rCoreSet, rOldSet,
aBtnGrid.IsChecked(),
- aBtnGrid.GetSavedValue() );
+ aBtnGrid.GetSavedValue() != STATE_NOCHECK );
bDataChanged |= lcl_PutBoolItem( GetWhich(SID_SCATTR_PAGE_HEADERS),
rCoreSet, rOldSet,
aBtnHeaders.IsChecked(),
- aBtnHeaders.GetSavedValue() );
+ aBtnHeaders.GetSavedValue() != STATE_NOCHECK );
bDataChanged |= lcl_PutBoolItem( GetWhich(SID_SCATTR_PAGE_TOPDOWN),
rCoreSet, rOldSet,
@@ -340,12 +340,12 @@ BOOL ScTablePage::FillItemSet( SfxItemSet& rCoreSet )
bDataChanged |= lcl_PutBoolItem( GetWhich(SID_SCATTR_PAGE_FORMULAS),
rCoreSet, rOldSet,
aBtnFormulas.IsChecked(),
- aBtnFormulas.GetSavedValue() );
+ aBtnFormulas.GetSavedValue() != STATE_NOCHECK );
bDataChanged |= lcl_PutBoolItem( GetWhich(SID_SCATTR_PAGE_NULLVALS),
rCoreSet, rOldSet,
aBtnNullVals.IsChecked(),
- aBtnNullVals.GetSavedValue() );
+ aBtnNullVals.GetSavedValue() != STATE_NOCHECK );
//------------------
// Erste Druckseite:
@@ -412,10 +412,10 @@ BOOL ScTablePage::FillItemSet( SfxItemSet& rCoreSet )
//------------------------------------------------------------------------
-int ScTablePage::DeactivatePage( SfxItemSet* pSet )
+int ScTablePage::DeactivatePage( SfxItemSet* pSetP )
{
- if ( pSet )
- FillItemSet( *pSet );
+ if ( pSetP )
+ FillItemSet( *pSetP );
return LEAVE_PAGE;
}
@@ -457,7 +457,7 @@ IMPL_LINK( ScTablePage, PageNoHdl, CheckBox*, pBtn )
//------------------------------------------------------------------------
-IMPL_LINK( ScTablePage, ScaleHdl, ListBox*, pListBox )
+IMPL_LINK( ScTablePage, ScaleHdl, ListBox*, EMPTYARG )
{
// controls for "Reduce/enlarge"
bool bPercent = (aLbScaleMode.GetSelectEntryPos() == SC_TPTABLE_SCALE_PERCENT);