diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-03-27 09:58:12 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-03-27 09:58:12 +0000 |
commit | 2c32696a04bc195c8ce61a0df6dcafb8c0c49fe0 (patch) | |
tree | 20f65f4b4d1a3a1c7c73f694210b3a07b6bea496 /sd/inc/sdundo.hxx | |
parent | 534bd7f86535dc81073d673d9bc185bb34520a55 (diff) |
MWS_SRX644: migrate branch mws_srx644 -> HEAD
Diffstat (limited to 'sd/inc/sdundo.hxx')
-rw-r--r-- | sd/inc/sdundo.hxx | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/sd/inc/sdundo.hxx b/sd/inc/sdundo.hxx index e5c3c7be2a29..d9ab48b296cc 100644 --- a/sd/inc/sdundo.hxx +++ b/sd/inc/sdundo.hxx @@ -2,9 +2,9 @@ * * $RCSfile: sdundo.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: thb $ $Date: 2001-09-17 14:09:29 $ + * last change: $Author: hr $ $Date: 2003-03-27 10:57:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -76,14 +76,15 @@ protected: SdDrawDocument* pDoc; public: TYPEINFO(); - SdUndoAction(SdDrawDocument* pSdDrawDocument) - : pDoc(pSdDrawDocument) {} - virtual BOOL CanRepeat(SfxRepeatTarget& rView) const; - virtual void Repeat(SfxRepeatTarget& rView); - virtual ~SdUndoAction() {} - void SetComment(String& rStr) { aComment = rStr; } - virtual String GetComment() const { return aComment; } + SdUndoAction(SdDrawDocument* pSdDrawDocument) + : pDoc(pSdDrawDocument) {} + virtual ~SdUndoAction() {} + + virtual BOOL CanRepeat(SfxRepeatTarget& rView) const; + virtual void Repeat(SfxRepeatTarget& rView); + void SetComment(String& rStr) { aComment = rStr; } + virtual String GetComment() const { return aComment; } + virtual SdUndoAction* Clone() const { return NULL; } }; #endif // _SD_SDUNDO_HXX - |