summaryrefslogtreecommitdiff
path: root/sd/source/core/undoanim.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-12-12 15:34:41 +0000
committerKurt Zenker <kz@openoffice.org>2006-12-12 15:34:41 +0000
commit5e8e58a6d849e1622de6bab7354a985d8520f094 (patch)
treefae2ab0ff5f098dc0246b9cbea1deea04dc4085a /sd/source/core/undoanim.cxx
parenta258359518faaa4ab97dc967f8e08b1f4cf993bf (diff)
INTEGRATION: CWS sdwarningsbegone (1.10.36); FILE MERGED
2006/11/22 12:41:33 cl 1.10.36.1: #i69285# warning free code changes for unxlngi6.pro
Diffstat (limited to 'sd/source/core/undoanim.cxx')
-rw-r--r--sd/source/core/undoanim.cxx27
1 files changed, 4 insertions, 23 deletions
diff --git a/sd/source/core/undoanim.cxx b/sd/source/core/undoanim.cxx
index 5b14e2a665c5..62c808d99d34 100644
--- a/sd/source/core/undoanim.cxx
+++ b/sd/source/core/undoanim.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: undoanim.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: obo $ $Date: 2006-09-16 18:17:49 $
+ * last change: $Author: kz $ $Date: 2006-12-12 16:34:41 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -134,21 +134,11 @@ void UndoAnimation::Redo()
}
}
-void UndoAnimation::Repeat()
-{
-}
-
String UndoAnimation::GetComment() const
{
return String(SdResId(STR_UNDO_ANIMATION));
}
-BOOL UndoAnimation::CanRepeat(SfxRepeatTarget&) const
-{
- return FALSE;
-}
-
-
struct UndoTransitionImpl
{
SdPage* mpPage;
@@ -166,8 +156,8 @@ struct UndoTransitionImpl
double mfOldTransitionDuration;
};
-UndoTransition::UndoTransition( SdDrawDocument* pDoc, SdPage* pThePage )
-: SdUndoAction( pDoc ), mpImpl( new UndoTransitionImpl )
+UndoTransition::UndoTransition( SdDrawDocument* _pDoc, SdPage* pThePage )
+: SdUndoAction( _pDoc ), mpImpl( new UndoTransitionImpl )
{
mpImpl->mpPage = pThePage;
@@ -211,18 +201,9 @@ void UndoTransition::Redo()
mpImpl->mpPage->mfTransitionDuration = mpImpl->mfNewTransitionDuration;
}
-void UndoTransition::Repeat()
-{
-}
-
String UndoTransition::GetComment() const
{
return String(SdResId(STR_UNDO_SLIDE_PARAMS));
}
-BOOL UndoTransition::CanRepeat(SfxRepeatTarget&) const
-{
- return FALSE;
-}
-
}