diff options
-rw-r--r-- | sc/source/ui/pagedlg/tphf.cxx | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/sc/source/ui/pagedlg/tphf.cxx b/sc/source/ui/pagedlg/tphf.cxx index 4a7847bd5be1..50c3e67470f4 100644 --- a/sc/source/ui/pagedlg/tphf.cxx +++ b/sc/source/ui/pagedlg/tphf.cxx @@ -4,9 +4,9 @@ * * $RCSfile: tphf.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: obo $ $Date: 2006-10-12 15:31:21 $ + * last change: $Author: vg $ $Date: 2007-02-27 13:37:25 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -165,16 +165,26 @@ void __EXPORT ScHFPage::ActivatePage( const SfxItemSet& rSet ) //------------------------------------------------------------------ -int __EXPORT ScHFPage::DeactivatePage( SfxItemSet* pSet ) +int __EXPORT ScHFPage::DeactivatePage( SfxItemSet* pSetP ) { - if ( LEAVE_PAGE == SvxHFPage::DeactivatePage( pSet ) ) - if ( pSet ) - FillItemSet( *pSet ); + if ( LEAVE_PAGE == SvxHFPage::DeactivatePage( pSetP ) ) + if ( pSetP ) + FillItemSet( *pSetP ); return LEAVE_PAGE; } //------------------------------------------------------------------ + +void ScHFPage::ActivatePage() +{ +} + +void ScHFPage::DeactivatePage() +{ +} + +//------------------------------------------------------------------ // Handler: //------------------------------------------------------------------ |